bazarr/libs/rich/_timer.py
Michiel van Baak Jansen 4a0932b5d3
Update ffsubsync and srt module
* Update ffsubsync to 0.4.11
* Update srt to 3.4.1
2021-04-13 00:02:29 -04:00

19 lines
357 B
Python

"""
Timer context manager, only used in debug.
"""
from time import time
import contextlib
@contextlib.contextmanager
def timer(subject: str = "time"):
"""print the elapsed time. (only used in debugging)"""
start = time()
yield
elapsed = time() - start
elapsed_ms = elapsed * 1000
print(f"{subject} elapsed {elapsed_ms:.1f}ms")