GitHub API rate limit newline (#1894)
Browse files- utils/google_utils.py +1 -0
utils/google_utils.py
CHANGED
@@ -44,6 +44,7 @@ def attempt_download(file):
|
|
44 |
if not file.exists() or file.stat().st_size < 1E6: # check
|
45 |
file.unlink(missing_ok=True) # remove partial downloads
|
46 |
print(f'ERROR: Download failure: {msg}')
|
|
|
47 |
return
|
48 |
|
49 |
|
|
|
44 |
if not file.exists() or file.stat().st_size < 1E6: # check
|
45 |
file.unlink(missing_ok=True) # remove partial downloads
|
46 |
print(f'ERROR: Download failure: {msg}')
|
47 |
+
print('')
|
48 |
return
|
49 |
|
50 |
|