9 lines
259 B
Python
9 lines
259 B
Python
from test_notify import TestNotifier
|
|
from appdaemon.adapi import ADAPI
|
|
|
|
class Variant(TestNotifier, ADAPI):
|
|
def initialize(self):
|
|
super().initialize()
|
|
self.log('Variant of the TestNotifier')
|
|
# self.log(' VARIANT '.center(50, '*'))
|