Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaputko committed Sep 5, 2024
1 parent b1431a7 commit ca8654f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/entity/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def _build_exe_args(exe_args: t.Union[str, t.Sequence[str], None]) -> t.List[str
if not (
isinstance(exe_args, str)
or (
isinstance(exe_args, collections.abc.Sequence)
isinstance(exe_args, collections.abc.Sequence)
and all(isinstance(arg, str) for arg in exe_args)
)
):
Expand Down

0 comments on commit ca8654f

Please sign in to comment.