MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / timer_is_running

Function timer_is_running

DemoPrograms/Demo_Timer_Periodic.py:46–56  ·  view source on GitHub ↗

:param timer_id: The timer ID to check :type timer_id: int :return: True if the timer is running :rtype: bool

(timer_id)

Source from the content-addressed store, hash-verified

44
45
46def timer_is_running(timer_id):
47 """
48
49 :param timer_id: The timer ID to check
50 :type timer_id: int
51 :return: True if the timer is running
52 :rtype: bool
53 """
54 if timer_running[timer_id]:
55 return True
56 return False
57
58
59

Callers 1

periodic_timer_threadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected