Skip to content

Commit a47b150

Browse files
committed
Python API: Fix terminal message for run.function()
1 parent 89d18ce commit a47b150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/mrtrix3/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def format_keyval(key, value):
514514
fnstring = f'{fn_to_execute.__module__}.{fn_to_execute.__name__}' \
515515
f'({", ".join([quoted(a) if isinstance(a, str) else str(a) for a in args])}' \
516516
f'{", " if (args and kwargs) else ""}' \
517-
f'{", ".join([format_keyval(key, value) for key, value in kwargs.items()])}'
517+
f'{", ".join([format_keyval(key, value) for key, value in kwargs.items()])})'
518518

519519
if shared.get_continue():
520520
if shared.trigger_continue(args) or shared.trigger_continue(kwargs.values()):

0 commit comments

Comments
 (0)