Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaputko committed Sep 25, 2024
1 parent 5e8a0bc commit d514867
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions smartsim/entity/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,7 @@ def print_attached_files(self) -> None:
def __str__(self) -> str: # pragma: no cover
exe_args_str = "\n".join(self.exe_args)
entities_str = "\n".join(str(entity) for entity in self.incoming_entities)
return textwrap.dedent(
f"""\
return textwrap.dedent(f"""\
Name: {self.name}
Type: {self.type}
Executable:
Expand All @@ -350,5 +349,4 @@ def __str__(self) -> str: # pragma: no cover
Incoming Entities:
{entities_str}
Key Prefixing Enabled: {self.key_prefixing_enabled}
"""
)
""")

0 comments on commit d514867

Please sign in to comment.