Skip to content

Commit

Permalink
Update wizard.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Dec 11, 2024
1 parent 5f15bc3 commit 79b8540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iblrig/gui/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ def start_stop(self):
cmd.extend(['--remote', *remotes])
for key, value in self.task_arguments.items():
if key == '--delay_secs':
value = str(int(value) * 60)
value = str(int(value) * 60) # noqa: PLW2901
if isinstance(value, list):
cmd.extend([key] + value)
elif isinstance(value, bool) and value is True:
Expand Down

0 comments on commit 79b8540

Please sign in to comment.