Skip to content

Commit

Permalink
Fixed else statement
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinp0 committed Nov 12, 2023
1 parent 3d1022c commit 37ad8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/job/adapters/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def _initialize_adapter(obj: 'JobAdapter',
obj.scan_res = obj.args['trsh']['scan_res']
# Remove it from the args dict
obj.args['trsh'].pop('scan_res')
elif obj.scan_res is None:
else:
obj.scan_res = rotor_scan_resolution

obj.set_files()
Expand Down

0 comments on commit 37ad8b9

Please sign in to comment.