mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
Replace Incomplete | None = None in third party stubs (#14063)
This commit is contained in:
@@ -5,7 +5,7 @@ class Auth0Error(Exception):
|
||||
error_code: str
|
||||
message: str
|
||||
content: Incomplete | None
|
||||
def __init__(self, status_code: int, error_code: str, message: str, content: Incomplete | None = None) -> None: ...
|
||||
def __init__(self, status_code: int, error_code: str, message: str, content=None) -> None: ...
|
||||
|
||||
class RateLimitError(Auth0Error):
|
||||
reset_at: int
|
||||
|
||||
Reference in New Issue
Block a user