summaryrefslogtreecommitdiff
path: root/stopwatch.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-07-16 21:43:44 -0700
committerScott Gasch <[email protected]>2021-07-16 21:43:44 -0700
commit1574e8a3a8982fab9278ad534f9427d464e4bffb (patch)
treeec6e6428ce43f2af64598f2023de3f7d784c5fe3 /stopwatch.py
parent0e451d3b3bf899b3d9ac0c38e3c3cd9d9be170ba (diff)
Various
Diffstat (limited to 'stopwatch.py')
-rw-r--r--stopwatch.py1
1 files changed, 0 insertions, 1 deletions
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()