:param timer_id: The timer ID to check :type timer_id: int :return: True if the timer is running :rtype: bool
(timer_id)
| 44 | |
| 45 | |
| 46 | def 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 |
no outgoing calls
no test coverage detected