several fixes

This commit is contained in:
2024-12-11 08:58:29 +01:00
parent 383f8dc893
commit b875102d34
6 changed files with 22 additions and 14 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ from app_class import AppClass
from config import Config, TriggerTuple, MissingConfig
class Trigger(AppClass):
def __init__(self, name: str, _config: Config, testmode: bool = False) -> None:
super().__init__(_config, testmode)
def __init__(self, name: str, _config: Config) -> None:
super().__init__(_config)
self.name = name
@property