9 lines
225 B
Python
9 lines
225 B
Python
from appdaemon.adapi import ADAPI
|
|
|
|
from app1.subdir.foo import Foo
|
|
|
|
class OtherDatabaseApp(Foo):
|
|
def initialize(self):
|
|
self.log(f'Initialized from {__file__}')
|
|
self.log(' CHANGE '.center(50, '='))
|
|
|