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
+1 -1
View File
@@ -2,5 +2,5 @@ from appdaemon.adapi import ADAPI
class GrandParent(ADAPI):
def initialize(self):
def initialize(self) -> None:
self.log(f'{self.__class__.__name__} Initialized')
+1 -1
View File
@@ -2,5 +2,5 @@ from appdaemon.adapi import ADAPI
class Parent(ADAPI):
def initialize(self):
def initialize(self) -> None:
self.log(f'{self.__class__.__name__} Initialized')
+1 -2
View File
@@ -1,7 +1,6 @@
from child import Child
class Sibling(Child):
def initialize(self):
def initialize(self) -> None:
self.log(f'{self.__class__.__name__} Initialized')