Skip to content

Commit cbf66a8

Browse files
committed
Add another type ignore
1 parent 2b2c314 commit cbf66a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/datetime.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ class datetime(date, Generic[_TzInfoT]):
435435
def astimezone(self, tz: _TzInfo | None = None) -> Self: ...
436436
def isoformat(self, sep: str = "T", timespec: str = "auto") -> str: ...
437437
@classmethod
438-
def strptime(cls, date_string: str, format: str, /) -> datetime[_TzInfo | None]: ...
438+
def strptime(cls, date_string: str, format: str, /) -> datetime[_TzInfo | None]: ... # type: ignore[override]
439439
def utcoffset(self) -> timedelta | None: ...
440440
def tzname(self) -> str | None: ...
441441
def dst(self) -> timedelta | None: ...

0 commit comments

Comments
 (0)