Spaces:
Running
on
Zero
Running
on
Zero
txya900619
commited on
Commit
•
1bd0d83
1
Parent(s):
0c29edb
fix: change gh_download time.sleep from 1 to 0.1
Browse files- ipa/__init__.py +1 -1
ipa/__init__.py
CHANGED
@@ -23,7 +23,7 @@ def gh_download(repo, path, token):
|
|
23 |
result.extend(response.json())
|
24 |
elif isinstance(result, dict):
|
25 |
result.update(response.json())
|
26 |
-
time.sleep(1)
|
27 |
return result
|
28 |
|
29 |
|
|
|
23 |
result.extend(response.json())
|
24 |
elif isinstance(result, dict):
|
25 |
result.update(response.json())
|
26 |
+
time.sleep(0.1)
|
27 |
return result
|
28 |
|
29 |
|