StarRailCopilot/module/daemon/daemon_base.py

8 lines
201 B
Python
Raw Normal View History

2023-05-14 07:48:34 +00:00
from module.base.base import ModuleBase
class DaemonBase(ModuleBase):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.device.disable_stuck_detection()