generalize helper for loading module from source (#2862)
This commit is contained in:
7
api/tests/integration_tests/utils/lazy_load_class.py
Normal file
7
api/tests/integration_tests/utils/lazy_load_class.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from tests.integration_tests.utils.parent_class import ParentClass
|
||||
|
||||
|
||||
class LazyLoadChildClass(ParentClass):
|
||||
def __init__(self, name: str):
|
||||
super().__init__(name)
|
||||
self.name = name
|
Reference in New Issue
Block a user