7 lines
141 B
Python
7 lines
141 B
Python
from child import Child
|
|
|
|
|
|
class Sibling(Child):
|
|
def initialize(self) -> None:
|
|
self.log(f'{self.__class__.__name__} Initialized')
|