Skip to content

Commit ba371f2

Browse files
omgjlkwestphahl
authored andcommitted
Remove import of checks in __init__
It was not needed.
1 parent 049fdf5 commit ba371f2

File tree

1 file changed

+37
-38
lines changed

1 file changed

+37
-38
lines changed

src/github3/__init__.py

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -60,44 +60,43 @@
6060
from .exceptions import GitHubError
6161

6262
__all__ = (
63-
"GitHub",
64-
"GitHubEnterprise",
65-
"GitHubError",
66-
"GitHubStatus",
67-
"authorize",
68-
'checks',
69-
"login",
70-
"enterprise_login",
71-
"emojis",
72-
"gist",
73-
"gitignore_template",
74-
"create_gist",
75-
"issue",
76-
"markdown",
77-
"octocat",
78-
"organization",
79-
"pull_request",
80-
"followers_of",
81-
"followed_by",
82-
"public_gists",
83-
"gists_by",
84-
"issues_on",
85-
"gitignore_templates",
86-
"all_repositories",
87-
"all_users",
88-
"all_events",
89-
"organizations_with",
90-
"repositories_by",
91-
"starred_by",
92-
"subscriptions_for",
93-
"rate_limit",
94-
"repository",
95-
"search_code",
96-
"search_repositories",
97-
"search_users",
98-
"search_issues",
99-
"user",
100-
"zen",
63+
'GitHub',
64+
'GitHubEnterprise',
65+
'GitHubError',
66+
'GitHubStatus',
67+
'authorize',
68+
'login',
69+
'enterprise_login',
70+
'emojis',
71+
'gist',
72+
'gitignore_template',
73+
'create_gist',
74+
'issue',
75+
'markdown',
76+
'octocat',
77+
'organization',
78+
'pull_request',
79+
'followers_of',
80+
'followed_by',
81+
'public_gists',
82+
'gists_by',
83+
'issues_on',
84+
'gitignore_templates',
85+
'all_repositories',
86+
'all_users',
87+
'all_events',
88+
'organizations_with',
89+
'repositories_by',
90+
'starred_by',
91+
'subscriptions_for',
92+
'rate_limit',
93+
'repository',
94+
'search_code',
95+
'search_repositories',
96+
'search_users',
97+
'search_issues',
98+
'user',
99+
'zen',
101100
# Metadata attributes
102101
"__package_name__",
103102
"__title__",

0 commit comments

Comments
 (0)