fixed many mypy issues

This commit is contained in:
2024-12-15 23:15:45 +01:00
parent a9bb16b6e3
commit d65f8c2efe
3 changed files with 47 additions and 15 deletions
+4 -2
View File
@@ -24,5 +24,7 @@ class Trigger(AppClass):
return _config
def run(self) -> bool:
# return True if Trigger is valid
return False
# return True if Trigger is valid
raise TriggerImportError(
"the Trigger class can't used directly, but must be inherited in a trigger specific class"
)