This commit is contained in:
John Lancaster
2025-06-20 08:30:46 -05:00
parent bd5c7ee339
commit ba043554dc
11 changed files with 13 additions and 13 deletions

View File

@@ -3,8 +3,9 @@ from typing import Any
logger = logging.getLogger('AppDaemon.Perimeter')
class HAL:
def __init__(self, *args: Any, **kwargs: Any):
def __init__(self, *args: Any, **kwargs: Any) -> None:
self.args = args
self.kwargs = kwargs
logger.info('Logging from HAL')

View File

@@ -1,8 +1,9 @@
CONSTANTS = {
'A': 1,
'B': 2,
'C': 3
'C': 3,
}
def utility_function():
return 123, 456