Spaces:
Running
Running
Update jobs.py
Browse files
jobs.py
CHANGED
|
@@ -230,7 +230,7 @@ class Api:
|
|
| 230 |
raise error
|
| 231 |
else:
|
| 232 |
found_range = re.search(
|
| 233 |
-
pattern="offres (?P<first_index>\d+)-(?P<last_index>\d+)/(?P<max_results>\d+)",
|
| 234 |
string=r.headers["Content-Range"],
|
| 235 |
).groupdict()
|
| 236 |
out = r.json()
|
|
|
|
| 230 |
raise error
|
| 231 |
else:
|
| 232 |
found_range = re.search(
|
| 233 |
+
pattern=r"offres (?P<first_index>\d+)-(?P<last_index>\d+)/(?P<max_results>\d+)",
|
| 234 |
string=r.headers["Content-Range"],
|
| 235 |
).groupdict()
|
| 236 |
out = r.json()
|