return list
Browse files
app.py
CHANGED
|
@@ -192,7 +192,7 @@ def generate_json(specification, model_version):
|
|
| 192 |
trial_pretty_json = trial_generated_json.json()
|
| 193 |
|
| 194 |
|
| 195 |
-
return farm_pretty_json, interactions_pretty_json, trial_pretty_json
|
| 196 |
|
| 197 |
except ValidationError as e:
|
| 198 |
return {"error": str(e)}
|
|
|
|
| 192 |
trial_pretty_json = trial_generated_json.json()
|
| 193 |
|
| 194 |
|
| 195 |
+
return [farm_pretty_json, interactions_pretty_json, trial_pretty_json]
|
| 196 |
|
| 197 |
except ValidationError as e:
|
| 198 |
return {"error": str(e)}
|