X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=stopwatch.py;h=d54af8792d28eef4025c150cb1920fbd2113efee;hb=1574e8a3a8982fab9278ad534f9427d464e4bffb;hp=752c7ed2d39268364d801391ce108768d2763f0c;hpb=0e451d3b3bf899b3d9ac0c38e3c3cd9d9be170ba;p=python_utils.git diff --git a/stopwatch.py b/stopwatch.py index 752c7ed..d54af87 100644 --- a/stopwatch.py +++ b/stopwatch.py @@ -16,7 +16,6 @@ class Timer(object): def __init__(self) -> None: self.start = None self.end = None - pass def __enter__(self) -> Callable[[], float]: self.start = time.perf_counter()