1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 23:19:26 +08:00
Files
Alas/module/daemon/daemon_base.py

8 lines
201 B
Python
Raw Normal View History

from module.base.base import ModuleBase
class DaemonBase(ModuleBase):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.device.disable_stuck_detection()