Skip to content

Commit

Permalink
undo accidental commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Feb 25, 2024
1 parent 76b370b commit dec0396
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion typeshed_client/typeshed/typing.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,11 @@ if sys.version_info >= (3, 10):

class NewType:
def __init__(self, name: str, tp: Any) -> None: ...
def __call__(self, __x: _T) -> _T: ...
if sys.version_info >= (3, 11):
@staticmethod
def __call__(__x: _T) -> _T: ...
else:
def __call__(self, x: _T) -> _T: ...

def __or__(self, other: Any) -> _SpecialForm: ...
def __ror__(self, other: Any) -> _SpecialForm: ...
Expand Down

0 comments on commit dec0396

Please sign in to comment.