Skip to content

Commit 58b1130

Browse files
authored
[stubsabot] Fix comparison sign (#14426)
1 parent cc9cb91 commit 58b1130

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/stubsabot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def obsolete_more_than_6_months(distribution: str) -> bool:
527527
remove_date = _add_months(release_date, POLICY_MONTHS_DELTA)
528528
today = datetime.datetime.now(tz=datetime.timezone.utc).date()
529529

530-
return remove_date >= today
530+
return remove_date <= today
531531

532532

533533
def parse_no_longer_updated_from_archive(source: zipfile.ZipFile | tarfile.TarFile) -> bool:

0 commit comments

Comments
 (0)