Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

lazy_load_class.py 199B

1234567
  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