8 lines
184 B
Python
8 lines
184 B
Python
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, '='))
|