added app_class and governor

This commit is contained in:
2024-12-10 16:11:22 +01:00
parent 6056ac134c
commit 383f8dc893
4 changed files with 38 additions and 10 deletions
+2 -2
View File
@@ -2,6 +2,6 @@ from trigger import Trigger
from config import Config
class RoonTrigger(Trigger):
def __init__(self, name: str, _config: Config) -> None:
super().__init__(name, _config)
def __init__(self, name: str, _config: Config, testmode: bool = False) -> None:
super().__init__(name, _config, testmode)