some renames and other changes

This commit is contained in:
John Lancaster
2024-07-07 22:07:02 -05:00
parent 3481ff7976
commit 870424baa0
8 changed files with 24 additions and 18 deletions

11
apps/test/test_notify.py Normal file
View File

@@ -0,0 +1,11 @@
from app1.notification import Notification
from appdaemon.adbase import ADBase
class TestNotifier(ADBase):
def initialize(self):
self.adapi = self.get_ad_api()
self.log = self.adapi.log
self.log(f'Initialized test notifier class: {self.__class__.__name__}')
self.notify = Notification(self.adapi)
self.notify.send("Some notifications")