Add missed hints

Signed-off-by: Aleksei Chetaev <alex.chetaev@gmail.com>
This commit is contained in:
Aleksei Chetaev 2023-02-16 16:13:25 +01:00 committed by Julia Kovshova
parent 9d21d1c143
commit 9021c5c0df

View file

@ -28,13 +28,13 @@ class TestExporter(ABC):
"""
@abstractmethod
def get_or_create_test_suite(self, test_suite_name) -> object:
def get_or_create_test_suite(self, test_suite_name: str) -> object:
"""
Get suite name with exact name or create if not exist
"""
@abstractmethod
def get_or_create_suite_section(self, test_rail_suite, section_name) -> object:
def get_or_create_suite_section(self, test_rail_suite, section_name: str) -> object:
"""
Get suite section with exact name or create new one if not exist
"""