9 lines
223 B
Python
9 lines
223 B
Python
from app1.subdir.foo import Foo
|
|
|
|
|
|
class OtherDatabaseApp(Foo):
|
|
def initialize(self):
|
|
super().initialize()
|
|
self.log('This app inherits from a custom class')
|
|
# self.log(' CHANGE '.center(50, '-'))
|