Compare commits
2 Commits
6e793baed8
...
346d0a95d8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
346d0a95d8 | ||
|
|
14609ec8c4 |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -2,4 +2,7 @@ __pycache__
|
|||||||
.pytest_cache
|
.pytest_cache
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.python-version
|
.python-version
|
||||||
.venv
|
.venv
|
||||||
|
|
||||||
|
conf/appdaemon.yaml
|
||||||
|
conf/secrets.yaml
|
||||||
@@ -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