11 lines
211 B
Python
11 lines
211 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from .utils import UTILS_VALS
|
|
|
|
|
|
raise ImportError('Fake import error')
|
|
|
|
class Child(ADAPI):
|
|
def initialize(self):
|
|
self.log(f'Initialized child with: {UTILS_VALS}')
|