Update script_for_automation.py
Browse files- script_for_automation.py +1 -1
script_for_automation.py
CHANGED
|
@@ -447,13 +447,13 @@ def drive_process():
|
|
| 447 |
# },
|
| 448 |
|
| 449 |
print("Making the OUTPUT STUFF")
|
| 450 |
-
output_rows = []
|
| 451 |
output_folder = "output_results_" +datetime.now().strftime("%Y%m%d_%H%M%S")
|
| 452 |
os.makedirs(output_folder, exist_ok=True)
|
| 453 |
|
| 454 |
print("GOING THROUGH RECIPES NOW")
|
| 455 |
for recipe_dict in my_recipes:
|
| 456 |
for key, input_chunks in input_data.items():
|
|
|
|
| 457 |
print("RECIPE INFO")
|
| 458 |
print(key)
|
| 459 |
print(recipe_dict["recipe_id"])
|
|
|
|
| 447 |
# },
|
| 448 |
|
| 449 |
print("Making the OUTPUT STUFF")
|
|
|
|
| 450 |
output_folder = "output_results_" +datetime.now().strftime("%Y%m%d_%H%M%S")
|
| 451 |
os.makedirs(output_folder, exist_ok=True)
|
| 452 |
|
| 453 |
print("GOING THROUGH RECIPES NOW")
|
| 454 |
for recipe_dict in my_recipes:
|
| 455 |
for key, input_chunks in input_data.items():
|
| 456 |
+
output_rows = []
|
| 457 |
print("RECIPE INFO")
|
| 458 |
print(key)
|
| 459 |
print(recipe_dict["recipe_id"])
|