Skip to content
Snippets Groups Projects
Verified Commit 611737ad authored by Antoine Lambert's avatar Antoine Lambert
Browse files

cli: Fix flake8 warnings

parent 1ef631ef
No related branches found
Tags v0.1.0
No related merge requests found
......@@ -321,7 +321,7 @@ def scrubber_check_stalled(
for partition, stuck_since in in_flight:
click.echo(
f"{partition}:\tstuck since {naturaldate(stuck_since)} "
f"({naturaldelta(now-stuck_since)})"
f"({naturaldelta(now - stuck_since)})"
)
if reset:
if db.checked_partition_reset(config_id, partition):
......@@ -374,7 +374,7 @@ def scrubber_check_running(ctx, name: str, config_id: int):
for partition, running_since in in_flight:
click.echo(
f"{partition}:\trunning since {naturaldate(running_since)} "
f"({naturaldelta(now-running_since)})"
f"({naturaldelta(now - running_since)})"
)
else:
click.echo(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment