Files
ad-test/conf/apps/globals/hal.py
John Lancaster ba043554dc linting
2025-06-20 08:30:46 -05:00

12 lines
255 B
Python

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