AzurLaneAutoScript/module/daemon/daemon_base.py
LmeSzinc dd7b389797 Add: Semi-auto, Opsi semi-auto and benchmark
- Add: dependency prettytable
- Fix: Running an Alas module directly
- Del: Remove all assets in daemon module, because it's redundant
2021-10-25 18:49:56 +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()