您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

lazy_load_class.py 288B

1234567891011
  1. from tests.integration_tests.utils.parent_class import ParentClass
  2. class LazyLoadChildClass(ParentClass):
  3. """Test lazy load child class for module import helper tests"""
  4. def __init__(self, name):
  5. super().__init__(name)
  6. def get_name(self):
  7. return self.name