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

Method timer_stop

PySimpleGUI/PySimpleGUI.py:12546–12554  ·  view source on GitHub ↗

Stops a timer with a given ID :param timer_id: Timer ID of timer to stop :type timer_id: int :return:

(self, timer_id)

Source from the content-addressed store, hash-verified

12544 return timer.id
12545
12546 def timer_stop(self, timer_id):
12547 """
12548 Stops a timer with a given ID
12549
12550 :param timer_id: Timer ID of timer to stop
12551 :type timer_id: int
12552 :return:
12553 """
12554 _TimerPeriodic.stop_timer_with_id(timer_id)
12555
12556 def timer_stop_all(self):
12557 """

Callers 2

mainFunction · 0.80
mainFunction · 0.80

Calls 1

stop_timer_with_idMethod · 0.80

Tested by

no test coverage detected