1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 16:49:26 +08:00
Files
Alas/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()