rosemariafontana commited on
Commit
5636946
·
verified ·
1 Parent(s): cd62df8

Update process_data.py

Browse files
Files changed (1) hide show
  1. 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(input_data)
582
  else:
583
  print("You do not have any preprocessing now")
584
- processed_input = input_data
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):