mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-12 18:11:42 +08:00
dac72b078d
Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
12 lines
282 B
Python
12 lines
282 B
Python
from tests.integration_tests.utils.parent_class import ParentClass
|
|
|
|
|
|
class ChildClass(ParentClass):
|
|
"""Test child class for module import helper tests"""
|
|
|
|
def __init__(self, name):
|
|
super().__init__(name)
|
|
|
|
def get_name(self):
|
|
return f"Child: {self.name}"
|