Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
da5d605
1
Parent(s):
d56fc93
Fix: Resolve SyntaxError in blaxel_backend.py by rewriting file
Browse files
src/nacc_orchestrator/blaxel_backend.py
CHANGED
|
@@ -133,7 +133,6 @@ class BlaxelBackend:
|
|
| 133 |
self.endpoint_url,
|
| 134 |
headers=headers,
|
| 135 |
json=payload,
|
| 136 |
-
json=payload,
|
| 137 |
timeout=timeout or self.timeout
|
| 138 |
)
|
| 139 |
response.raise_for_status()
|
|
@@ -180,7 +179,6 @@ class BlaxelBackend:
|
|
| 180 |
self.endpoint_url,
|
| 181 |
headers=headers,
|
| 182 |
json=payload,
|
| 183 |
-
json=payload,
|
| 184 |
timeout=timeout or self.timeout
|
| 185 |
)
|
| 186 |
response.raise_for_status()
|
|
|
|
| 133 |
self.endpoint_url,
|
| 134 |
headers=headers,
|
| 135 |
json=payload,
|
|
|
|
| 136 |
timeout=timeout or self.timeout
|
| 137 |
)
|
| 138 |
response.raise_for_status()
|
|
|
|
| 179 |
self.endpoint_url,
|
| 180 |
headers=headers,
|
| 181 |
json=payload,
|
|
|
|
| 182 |
timeout=timeout or self.timeout
|
| 183 |
)
|
| 184 |
response.raise_for_status()
|