mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
* Add type stubs for GithubException subclasses * Install type stubs per PEP 561 See https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages. * Make PaginatedList a generic type * Add type stubs for __init__.py * Add type stub for NamedUser.get_projects * Add GithubObject superclasses to type stubs Fixes #1490
17 lines
971 B
Python
17 lines
971 B
Python
from github.MainClass import Github as Github
|
|
from github.MainClass import GithubIntegration as GithubIntegration
|
|
|
|
from .GithubException import BadAttributeException as BadAttributeException
|
|
from .GithubException import BadCredentialsException as BadCredentialsException
|
|
from .GithubException import BadUserAgentException as BadUserAgentException
|
|
from .GithubException import GithubException as GithubException
|
|
from .GithubException import IncompletableObject as IncompleteableObject
|
|
from .GithubException import RateLimitExceededException as RateLimitExceededException
|
|
from .GithubException import TwoFactorException as TwoFactorException
|
|
from .GithubException import UnknownObjectException as UnknownObjectException
|
|
from .InputFileContent import InputFileContent as InputFileContent
|
|
from .InputGitAuthor import InputGitAuthor as InputGitAuthor
|
|
from .InputGitTreeElement import InputGitTreeElement as InputGitTreeElement
|
|
|
|
def enable_console_debug_logging() -> None: ...
|