added sibling
This commit is contained in:
@@ -2,11 +2,16 @@ child:
|
|||||||
module: child
|
module: child
|
||||||
class: Child
|
class: Child
|
||||||
|
|
||||||
|
sibling:
|
||||||
|
module: sibling
|
||||||
|
class: Sibling
|
||||||
|
|
||||||
parent:
|
parent:
|
||||||
module: parent
|
module: parent
|
||||||
class: Parent
|
class: Parent
|
||||||
dependencies:
|
dependencies:
|
||||||
- child
|
- child
|
||||||
|
- sibling
|
||||||
|
|
||||||
grand-parent:
|
grand-parent:
|
||||||
module: grand_parent
|
module: grand_parent
|
||||||
|
|||||||
7
conf/apps/family/sibling.py
Normal file
7
conf/apps/family/sibling.py
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
from appdaemon.adapi import ADAPI
|
||||||
|
|
||||||
|
from child import Child
|
||||||
|
|
||||||
|
class Sibling(Child):
|
||||||
|
def initialize(self):
|
||||||
|
self.log(f"{self.__class__.__name__} Initialized")
|
||||||
Reference in New Issue
Block a user