From c2077a85b3c5fa5c5891c04532ee3b007cb05316 Mon Sep 17 00:00:00 2001 From: Nikita Aksenov Date: Sat, 3 May 2025 23:07:35 +0300 Subject: [PATCH] refactoring --- main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.py b/main.py index f5cbc85..54b798d 100644 --- a/main.py +++ b/main.py @@ -82,11 +82,6 @@ def relevant_filter_func(d: dict) -> bool: return False 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: if f"[{dtype.lower()}]" in d["name"].lower(): return True