linting
This commit is contained in:
@@ -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')
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
CONSTANTS = {
|
||||
'A': 1,
|
||||
'B': 2,
|
||||
'C': 3
|
||||
'C': 3,
|
||||
}
|
||||
|
||||
|
||||
def utility_function():
|
||||
return 123, 456
|
||||
|
||||
Reference in New Issue
Block a user