Fix python style

This commit is contained in:
Kruglov Pavel 2024-08-14 15:16:34 +02:00 committed by GitHub
parent 6dfed409f4
commit 28b0aad3f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1975,9 +1975,6 @@ class TestSuite:
)
return random_settings_limits
def is_shebang(line: str) -> bool:
return line.startswith("#!")
def find_tag_line(lines, comment_sign):
for line in lines:
if line.startswith(comment_sign) and line[
@ -2077,9 +2074,9 @@ class TestSuite:
)
)
self.all_tags: Dict[str, Set[str]] = all_tags_and_random_settings_limits[0]
self.all_random_settings_limits: Dict[
str, Dict[str, (int, int)]
] = all_tags_and_random_settings_limits[1]
self.all_random_settings_limits: Dict[str, Dict[str, (int, int)]] = (
all_tags_and_random_settings_limits[1]
)
self.sequential_tests = []
self.parallel_tests = []
for test_name in self.all_tests: