Compare commits

..

2 Commits

Author SHA1 Message Date
John Lancaster
346d0a95d8 added to gitignore 2024-09-04 20:05:54 -05:00
John Lancaster
14609ec8c4 added sibling 2024-09-04 20:05:00 -05:00
3 changed files with 16 additions and 1 deletions

3
.gitignore vendored
View File

@@ -3,3 +3,6 @@ __pycache__
*.egg-info
.python-version
.venv
conf/appdaemon.yaml
conf/secrets.yaml

View File

@@ -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

View 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")