8 lines
134 B
Python
8 lines
134 B
Python
|
|
from child import Child
|
|
|
|
|
|
class Sibling(Child):
|
|
def initialize(self):
|
|
self.log(f'{self.__class__.__name__} Initialized')
|