Files

8 lines
191 B
Python
Raw Permalink Normal View History

2025-12-01 17:21:38 +08:00
from tests.integration_tests.utils.parent_class import ParentClass
class ChildClass(ParentClass):
def __init__(self, name: str):
super().__init__(name)
self.name = name