refactoring

This commit is contained in:
Nikita Aksenov 2025-05-03 23:07:35 +03:00
parent 7c215b14f4
commit c2077a85b3
No known key found for this signature in database
GPG key ID: 9DC1431B2123B2E8

View file

@ -82,11 +82,6 @@ def relevant_filter_func(d: dict) -> bool:
return False return False
return True return True
def tests_filter_func(d: dict) -> bool:
if "[тест]" in d["name"].lower():
return True
return False
def deadline_type_filter_func(d: dict, dtype: str) -> bool: def deadline_type_filter_func(d: dict, dtype: str) -> bool:
if f"[{dtype.lower()}]" in d["name"].lower(): if f"[{dtype.lower()}]" in d["name"].lower():
return True return True