Update process_data.py
Browse files- process_data.py +3 -1
process_data.py
CHANGED
|
@@ -277,8 +277,10 @@ def generate_json_pieces(input_data, parameters):
|
|
| 277 |
"plantings": plantings
|
| 278 |
}
|
| 279 |
|
|
|
|
|
|
|
| 280 |
print("FINAL JSON: ")
|
| 281 |
-
final_pretty_json =
|
| 282 |
print(final_pretty_json)
|
| 283 |
|
| 284 |
return final_pretty_json, final_pretty_json, final_pretty_json
|
|
|
|
| 277 |
"plantings": plantings
|
| 278 |
}
|
| 279 |
|
| 280 |
+
print("ADDED DICTS")
|
| 281 |
+
print(farm_activities)
|
| 282 |
print("FINAL JSON: ")
|
| 283 |
+
final_pretty_json = json.dumps(farm_activities, indent=4)
|
| 284 |
print(final_pretty_json)
|
| 285 |
|
| 286 |
return final_pretty_json, final_pretty_json, final_pretty_json
|