Skip to content

Commit 9dbe993

Browse files
authored
linting
1 parent c3a4422 commit 9dbe993

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/rubin/rag/extra_scripts/ingest_github.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ def load_org(n_repo_max: int = 2, org_name: str = "lsst-dm") -> list:
6666

6767
# this will give an output 'list' of repos sorted
6868
# from most to least recently updated
69-
api_url = "https://api.github.com/orgs/" + org_name + \
70-
"/repos?per_page=100&sort=updated"
69+
api_url = (
70+
"https://api.github.com/orgs/"
71+
+ org_name
72+
+ "/repos?per_page=100&sort=updated"
73+
)
7174

7275
result = requests.get(api_url, timeout=10)
7376
data = result.json()

0 commit comments

Comments
 (0)