From 9021c5c0dfa3776b6bde4a7c1a4c41f33f81a9c7 Mon Sep 17 00:00:00 2001 From: Aleksei Chetaev Date: Thu, 16 Feb 2023 16:13:25 +0100 Subject: [PATCH] Add missed hints Signed-off-by: Aleksei Chetaev --- src/frostfs_testlib/analytics/test_exporter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frostfs_testlib/analytics/test_exporter.py b/src/frostfs_testlib/analytics/test_exporter.py index dd57478..9deda8a 100644 --- a/src/frostfs_testlib/analytics/test_exporter.py +++ b/src/frostfs_testlib/analytics/test_exporter.py @@ -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 """