9 lines
173 B
Python
9 lines
173 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from .utils import UTILS_VALS
|
|
|
|
|
|
class Parent(ADAPI):
|
|
def initialize(self):
|
|
self.log(f'Initialized parent with: {UTILS_VALS}')
|