Various
[python_utils.git] / stopwatch.py
index 752c7ed2d39268364d801391ce108768d2763f0c..d54af8792d28eef4025c150cb1920fbd2113efee 100644 (file)
@@ -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()