diff options
Diffstat (limited to 'lab/benchmark.py')
-rw-r--r-- | lab/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/benchmark.py b/lab/benchmark.py index f3bc86d7..4c5de3c4 100644 --- a/lab/benchmark.py +++ b/lab/benchmark.py @@ -157,7 +157,7 @@ class ProjectToTest: class EmptyProject(ProjectToTest): """A dummy project for testing other parts of this code.""" - def __init__(self, slug: str="empty", fake_durations: Iterable[float]=(1.23,)): + def __init__(self, slug: str = "empty", fake_durations: Iterable[float] = (1.23,)): self.slug = slug self.durations = iter(itertools.cycle(fake_durations)) |