12 lines
194 B
Python
12 lines
194 B
Python
class LoopSwitch(object):
|
|
_run: bool
|
|
|
|
def __init__(self):
|
|
self._run = True
|
|
|
|
def stop(self):
|
|
self._run = False
|
|
|
|
def status(self) -> bool:
|
|
return self._run
|