mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-13 02:55:22 +08:00
4a0932b5d3
* Update ffsubsync to 0.4.11 * Update srt to 3.4.1
18 lines
357 B
Python
18 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")
|