added variant

This commit is contained in:
John Lancaster
2024-07-08 17:55:32 -05:00
parent 9210cbf8a1
commit 03ebbcc1f0
3 changed files with 14 additions and 3 deletions

9
apps/test/variant.py Normal file
View File

@@ -0,0 +1,9 @@
from test_notify import TestNotifier
from appdaemon.adapi import ADAPI
class Variant(TestNotifier, ADAPI):
def initialize(self):
self.adapi = self.get_ad_api()
self.log = self.adapi.log
self.log('Variant of the TestNotifier')
# self.log(' VARIANT '.center(50, '*'))