mirror of
https://github.com/langgenius/dify.git
synced 2025-11-16 11:23:44 +00:00
12 lines
288 B
Python
12 lines
288 B
Python
from tests.integration_tests.utils.parent_class import ParentClass
|
|
|
|
|
|
class LazyLoadChildClass(ParentClass):
|
|
"""Test lazy load child class for module import helper tests"""
|
|
|
|
def __init__(self, name):
|
|
super().__init__(name)
|
|
|
|
def get_name(self):
|
|
return self.name
|