Skip to content

Commit 458a3c0

Browse files
[3.12] GH-112152: Fix typo in typing.override docstring (GH-112158) (#112162)
GH-112152: Fix typo in `typing.override` docstring (GH-112158) (cherry picked from commit 12c7e9d) Co-authored-by: Qua27 <[email protected]>
1 parent a498433 commit 458a3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3364,7 +3364,7 @@ def override[F: _Func](method: F, /) -> F:
33643364
Usage::
33653365
33663366
class Base:
3367-
def method(self) -> None: ...
3367+
def method(self) -> None:
33683368
pass
33693369
33703370
class Child(Base):

0 commit comments

Comments
 (0)