st-ten-1/src/lib/helpers/timing.py

10 lines
144 B
Python
Raw Normal View History

2022-06-01 16:37:19 +00:00
from time import perf_counter, time
ref = time() - perf_counter()
2023-05-18 08:40:16 +00:00
pass
2022-06-01 16:37:19 +00:00
def timing():
global ref
t = ref + perf_counter()
return t