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