more complexity in the test conf
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import appdaemon
|
||||
|
||||
# import app2.database
|
||||
|
||||
from . import database
|
||||
|
||||
# from .database import OtherDatabaseApp
|
||||
# from .database import OtherDatabaseApp as NormalApp
|
||||
@@ -1,6 +1,9 @@
|
||||
from appdaemon.adapi import ADAPI
|
||||
|
||||
class OtherDatabaseApp(ADAPI):
|
||||
from app1.subdir.foo import Foo
|
||||
|
||||
class OtherDatabaseApp(Foo):
|
||||
def initialize(self):
|
||||
self.log(f'Initialized from {__file__}')
|
||||
self.log(' CHANGE '.center(50, '='))
|
||||
|
||||
Reference in New Issue
Block a user