mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
[stubsabot] Fix comparison sign (#14426)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user