Update process_data.py
Browse files- process_data.py +2 -2
process_data.py
CHANGED
|
@@ -578,10 +578,10 @@ def process_specifications(processed_data):
|
|
| 578 |
print("You are elifing into single json creation")
|
| 579 |
if processed_data["parameters"]["pre_process"] == "yes":
|
| 580 |
print("You are preprocessing now")
|
| 581 |
-
processed_input = pre_processing(
|
| 582 |
else:
|
| 583 |
print("You do not have any preprocessing now")
|
| 584 |
-
processed_input =
|
| 585 |
return generate_json(processed_input)
|
| 586 |
|
| 587 |
def parse_survey_stack(data):
|
|
|
|
| 578 |
print("You are elifing into single json creation")
|
| 579 |
if processed_data["parameters"]["pre_process"] == "yes":
|
| 580 |
print("You are preprocessing now")
|
| 581 |
+
processed_input = pre_processing(processed_data)
|
| 582 |
else:
|
| 583 |
print("You do not have any preprocessing now")
|
| 584 |
+
processed_input = processed_data
|
| 585 |
return generate_json(processed_input)
|
| 586 |
|
| 587 |
def parse_survey_stack(data):
|