foo, bar, baz rename
This commit is contained in:
18
apps/my_repo/my_pkg/foo.py
Normal file
18
apps/my_repo/my_pkg/foo.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from pathlib import Path
|
||||
|
||||
from appdaemon.adbase import ADBase
|
||||
|
||||
filename = Path(__file__).name
|
||||
print(f' Importing {filename} '.center(50, '-'))
|
||||
|
||||
class Foo(ADBase):
|
||||
changes: bool = False
|
||||
|
||||
def initialize(self):
|
||||
self.adapi = self.get_ad_api()
|
||||
|
||||
self.adapi.log(f'Initialized app from {filename} new line changes: {self.changes}')
|
||||
# self.adapi.log(f'New log line: {self.changes}')
|
||||
# self.adapi.log(f'Even newer log line: {self.changes}')
|
||||
|
||||
print(f'Done, motion.changes = {Foo.changes}'.center(50, '-'))
|
||||
Reference in New Issue
Block a user