mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-01-08 12:07:36 +08:00
dd7b389797
- Add: dependency prettytable - Fix: Running an Alas module directly - Del: Remove all assets in daemon module, because it's redundant
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()
|