st-ten-1/src/lib/helpers/timing.py
2023-05-18 10:40:16 +02:00

10 lines
144 B
Python

from time import perf_counter, time
ref = time() - perf_counter()
pass
def timing():
global ref
t = ref + perf_counter()
return t