massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / oauthlib / oauthlib / oauth1 / rfc5849 / errors.pyi
1 from typing import Any
2
3 class OAuth1Error(Exception):
4     error: Any
5     description: str
6     uri: Any
7     status_code: Any
8     def __init__(
9         self, description: Any | None = ..., uri: Any | None = ..., status_code: int = ..., request: Any | None = ...
10     ) -> None: ...
11     def in_uri(self, uri): ...
12     @property
13     def twotuples(self): ...
14     @property
15     def urlencoded(self): ...
16
17 class InsecureTransportError(OAuth1Error):
18     error: str
19     description: str
20
21 class InvalidSignatureMethodError(OAuth1Error):
22     error: str
23
24 class InvalidRequestError(OAuth1Error):
25     error: str
26
27 class InvalidClientError(OAuth1Error):
28     error: str