type: remove another unused mypy directive

This commit is contained in:
Evgenii Alekseev 2024-08-06 17:55:15 +03:00
parent b15161554e
commit eef4d2dd98

View File

@ -43,7 +43,7 @@ class Search(Handler):
SORT_FIELDS = {
field.name
for field in fields(AURPackage)
if field.default_factory is not list # type: ignore[comparison-overlap]
if field.default_factory is not list
}
@classmethod