1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 19:55:12 +00:00
ArisuAutoSweeper/module/daemon/daemon_base.py
2023-11-01 15:33:35 +08:00

8 lines
201 B
Python

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