We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a4422 commit 9dbe993Copy full SHA for 9dbe993
python/rubin/rag/extra_scripts/ingest_github.py
@@ -66,8 +66,11 @@ def load_org(n_repo_max: int = 2, org_name: str = "lsst-dm") -> list:
66
67
# this will give an output 'list' of repos sorted
68
# from most to least recently updated
69
- api_url = "https://api.github.com/orgs/" + org_name + \
70
- "/repos?per_page=100&sort=updated"
+ api_url = (
+ "https://api.github.com/orgs/"
71
+ + org_name
72
+ + "/repos?per_page=100&sort=updated"
73
+ )
74
75
result = requests.get(api_url, timeout=10)
76
data = result.json()
0 commit comments