We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb1f2a7 commit 175e1acCopy full SHA for 175e1ac
.github/linters/.isort.cfg
@@ -1,2 +1,4 @@
1
[settings]
2
profile = black
3
+known_third_party = github3,dateutil,dotenv
4
+known_first_party = auth
stale_repos.py
@@ -8,10 +8,11 @@
8
from os.path import dirname, join
9
10
import github3
11
-from auth import auth_to_github
12
from dateutil.parser import parse
13
from dotenv import load_dotenv
14
+import auth
15
+
16
17
def main(): # pragma: no cover
18
"""
@@ -42,7 +43,7 @@ def main(): # pragma: no cover
42
43
gh_app_enterprise_only = os.getenv("GITHUB_APP_ENTERPRISE_ONLY")
44
45
# Auth to GitHub.com or GHE
- github_connection = auth_to_github(
46
+ github_connection = auth.auth_to_github(
47
token,
48
gh_app_id,
49
gh_app_installation_id,
0 commit comments