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

5
.gitignore vendored
View File

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

View File

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

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