9 lines
168 B
Python
9 lines
168 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from child import Child
|
|
|
|
|
|
class Sibling(Child):
|
|
def initialize(self):
|
|
self.log(f'{self.__class__.__name__} Initialized')
|