Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

child_class.py 282B

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