glyph / DateType

A type wrapper for the standard library `datetime` that supplies stricter checks, such as making 'datetime' not substitutable for 'date', and separating out Naive and Aware datetimes into separate, mutually-incompatible types.
Other
73 stars 6 forks source link

Missing DateTime.strftime() declaration #4

Closed werkshy closed 1 year ago

werkshy commented 1 year ago

The DateTime declaration is missing the strftime method.

I added this locally and it works:

    def strftime(self, __format: str) -> str:
        ...