Files
urbanLifeline/dify/api/tests/integration_tests/utils/child_class.py

8 lines
191 B
Python
Raw 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