Compare commits
2 Commits
6e793baed8
...
346d0a95d8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
346d0a95d8 | ||
|
|
14609ec8c4 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,3 +3,6 @@ __pycache__
|
||||
*.egg-info
|
||||
.python-version
|
||||
.venv
|
||||
|
||||
conf/appdaemon.yaml
|
||||
conf/secrets.yaml
|
||||
@@ -2,11 +2,16 @@ child:
|
||||
module: child
|
||||
class: Child
|
||||
|
||||
sibling:
|
||||
module: sibling
|
||||
class: Sibling
|
||||
|
||||
parent:
|
||||
module: parent
|
||||
class: Parent
|
||||
dependencies:
|
||||
- child
|
||||
- sibling
|
||||
|
||||
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