some renames and other changes
This commit is contained in:
@@ -4,5 +4,3 @@ from appdaemon.adapi import ADAPI
|
||||
class Database:
|
||||
def __init__(self, ad: ADAPI) -> None:
|
||||
self.ad = ad
|
||||
# self.ad.logger.info(' NEW LOG LINE Database '.center(50, '='))
|
||||
# self.ad.call_service()
|
||||
|
||||
@@ -4,7 +4,9 @@ from appdaemon.adapi import ADAPI
|
||||
class Notification:
|
||||
def __init__(self, ad: ADAPI) -> None:
|
||||
self.ad = ad
|
||||
# self.ad.logger.info(' NEW LOG LINE '.center(50, '='))
|
||||
self.log = self.ad.logger.info
|
||||
self.log('Notification initialize')
|
||||
# self.ad.logger.info(' NOTIFICATION '.center(50, '-'))
|
||||
|
||||
def send(self, message: str = "message not specified") -> None:
|
||||
self.ad.log(message, level="DEBUG")
|
||||
self.ad.log(f'NOTIFICATION: {message}', level="DEBUG")
|
||||
|
||||
0
apps/app1/subdir/__init__.py
Normal file
0
apps/app1/subdir/__init__.py
Normal file
@@ -1,6 +1,9 @@
|
||||
from pathlib import Path
|
||||
|
||||
from appdaemon.adapi import ADAPI
|
||||
|
||||
|
||||
class Foo(ADAPI):
|
||||
def initialize(self):
|
||||
self.log(f'Initialized from {__file__}')
|
||||
|
||||
self.log(f'Initialized app from {Path(__file__).relative_to(self.AD.app_dir.parent)}')
|
||||
# self.log(' FOO '.center(50, '-'))
|
||||
|
||||
Reference in New Issue
Block a user