mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-02 17:43:25 +08:00
Clean out the pytype blacklist (#1667)
This commit is contained in:
committed by
Matthias Kramm
parent
9e76d44b09
commit
817c270c32
@@ -5,9 +5,10 @@ from enum import IntEnum
|
||||
if sys.version_info >= (3, 5):
|
||||
class HTTPStatus(IntEnum):
|
||||
|
||||
def __init__(self, *a) -> None:
|
||||
self.phrase = ... # type: str
|
||||
self.description = ... # type: str
|
||||
def __init__(self, *a) -> None: ...
|
||||
|
||||
phrase = ... # type: str
|
||||
description = ... # type: str
|
||||
|
||||
CONTINUE = ... # type: HTTPStatus
|
||||
SWITCHING_PROTOCOLS = ... # type: HTTPStatus
|
||||
|
||||
Reference in New Issue
Block a user