Skip to content
Snippets Groups Projects
Commit 85734c77 authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

FIXUP vypisování parametrů programu

parent a24c2a85
Branches
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ class Run: ...@@ -42,7 +42,7 @@ class Run:
if len(self.args): if len(self.args):
x += "(" x += "("
for arg in self.args[:-1]: for arg in self.args[:-1]:
x += "{arg}, " x += f"{arg}, "
x += f"{self.args[-1]})" x += f"{self.args[-1]})"
return x return x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment