<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""For when pip wants to check the date or time.
"""

import datetime


def today_is_later_than(year: int, month: int, day: int) -&gt; bool:
    today = datetime.date.today()
    given = datetime.date(year, month, day)

    return today &gt; given
</pre></body></html>