Skip to content

Commit

Permalink
[Lint] Make linters more happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp v. K committed Mar 21, 2022
1 parent d3672bf commit 9d938c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mlonmcu/flow/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_parser(backend_name, features, required, defaults):
metavar="KEY=VALUE",
nargs="+",
action="append",
help=f"""Set a number of key-value pairs
help="""Set a number of key-value pairs
Allowed options:
"""
Expand Down
2 changes: 1 addition & 1 deletion mlonmcu/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def _used_stages(runs, until):
with concurrent.futures.ThreadPoolExecutor(num_workers) as executor:
if per_stage:
if progress:
_init_progress2(len(used_stages), msg=f"Processing stages")
_init_progress2(len(used_stages), msg="Processing stages")
for stage in used_stages:
run_stage = RunStage(stage).name
if progress:
Expand Down
2 changes: 1 addition & 1 deletion mlonmcu/target/corstone300.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_ethosu_fvp_args(self):
"-C",
f"ethosu.num_macs={self.ethosu_num_macs}",
"-C",
f'ethosu.extra_args="--fast"',
'ethosu.extra_args="--fast"',
]

def exec(self, program, *args, cwd=os.getcwd(), **kwargs):
Expand Down

0 comments on commit 9d938c8

Please sign in to comment.