Skip to content
Snippets Groups Projects
Commit 833921d1 authored by Philipp Schmidt's avatar Philipp Schmidt
Browse files

Fix missing switch from key to attribute access in xfel-calibrate args after rework

parent 930d8df1
No related branches found
No related tags found
1 merge request!608Fix missing switch from key to attribute access in xfel-calibrate args after rework
...@@ -423,7 +423,7 @@ def parse_argv_and_load_nb(argv) -> Tuple[Dict, NBDetails]: ...@@ -423,7 +423,7 @@ def parse_argv_and_load_nb(argv) -> Tuple[Dict, NBDetails]:
'location is sufficient for your ' 'location is sufficient for your '
'needs.'.format(', '.join(not_reproducible_args))) 'needs.'.format(', '.join(not_reproducible_args)))
if not args['not_reproducible']: if not args.not_reproducible:
# If not explicitly specified that reproducibility may be # If not explicitly specified that reproducibility may be
# broken, remind the user and exit. # broken, remind the user and exit.
print('To proceed, you can explicitly allow reproducibility to ' print('To proceed, you can explicitly allow reproducibility to '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment