mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-16 15:35:12 +00:00
8 lines
201 B
Python
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()
|