10 lines
303 B
Python
10 lines
303 B
Python
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, '*'))
|