mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-11 11:56:53 +08:00
generalize helper for loading module from source (#2862)
This commit is contained in:
7
api/tests/integration_tests/utils/child_class.py
Normal file
7
api/tests/integration_tests/utils/child_class.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from tests.integration_tests.utils.parent_class import ParentClass
|
||||
|
||||
|
||||
class ChildClass(ParentClass):
|
||||
def __init__(self, name: str):
|
||||
super().__init__(name)
|
||||
self.name = name
|
||||
Reference in New Issue
Block a user