mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
8 lines
191 B
Python
8 lines
191 B
Python
|
from tests.integration_tests.utils.parent_class import ParentClass
|
||
|
|
||
|
|
||
|
class ChildClass(ParentClass):
|
||
|
def __init__(self, name: str):
|
||
|
super().__init__(name)
|
||
|
self.name = name
|