mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 22:38:49 +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()
|