GH-112152: Fix typo in typing.override docstring (#112158)

This commit is contained in:
Qua27 2023-11-16 18:16:04 +03:00 committed by GitHub
parent bd89bca9e2
commit 12c7e9d573
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3345,7 +3345,7 @@ def override[F: _Func](method: F, /) -> F:
Usage::
class Base:
def method(self) -> None: ...
def method(self) -> None:
pass
class Child(Base):