[stubsabot] Fix comparison sign (#14426)

This commit is contained in:
Semyon Moroz
2025-07-17 06:15:04 +00:00
committed by GitHub
parent cc9cb918e6
commit 58b11302b5
+1 -1
View File
@@ -527,7 +527,7 @@ def obsolete_more_than_6_months(distribution: str) -> bool:
remove_date = _add_months(release_date, POLICY_MONTHS_DELTA)
today = datetime.datetime.now(tz=datetime.timezone.utc).date()
return remove_date >= today
return remove_date <= today
def parse_no_longer_updated_from_archive(source: zipfile.ZipFile | tarfile.TarFile) -> bool: