lazy_load_class.py 199 B

12345678
  1. from tests.integration_tests.utils.parent_class import ParentClass
  2. class LazyLoadChildClass(ParentClass):
  3. def __init__(self, name: str):
  4. super().__init__(name)
  5. self.name = name