Skip to content

Commit

Permalink
subprocctx: fix xtrigger __str__
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Jun 15, 2023
1 parent 5eee0fb commit 5f7acd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cylc/flow/subprocctx.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_signature(self):
def __str__(self):
return (
f'{self.func_name}('
f'{", ".join(self.func_args + list(self.func_kwargs))}'
f'{", ".join(map(str, self.func_args + list(self.func_kwargs)))}'
f'):{self.intvl}'
)

Expand Down

0 comments on commit 5f7acd1

Please sign in to comment.