Export IncompletableObject in the github namespace (#1450)

When IncompletableObject was added, it was only added to
GithubException, and not imported directly into the github namespace
like other exceptions. Correct that, and clean up the resultant now
unrequired import.
This commit is contained in:
Steve Kowalik
2020-04-15 10:52:13 +10:00
committed by GitHub
parent f1401c1550
commit 0ebdbb2675
2 changed files with 3 additions and 2 deletions
+2
View File
@@ -46,6 +46,7 @@ from .GithubException import ( # type: ignore
BadCredentialsException,
BadUserAgentException,
GithubException,
IncompletableObject,
RateLimitExceededException,
TwoFactorException,
UnknownObjectException,
@@ -73,6 +74,7 @@ __all__ = [
Github,
GithubException,
GithubIntegration,
IncompletableObject,
InputFileContent,
InputGitAuthor,
InputGitTreeElement,