Closed njzjz closed 2 months ago
from dxtb import timer
timer.disable()
This will not start any timers afterwards. However, the global timer will still be running, as it is started upon import (see here).
If everything should stop, use
from dxtb import timer
timer.kill()
Thanks. It works.
Hi, how can I prevent the following error? I don't explicitly use Timer in my code.