fruitpicker01 commited on
Commit
e7234b3
·
verified ·
1 Parent(s): a1a078a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -113,7 +113,7 @@ def get_instructions_for_param(param_value, df, col):
113
 
114
  def format_instruction_string(instr):
115
  terms = [t.strip() for t in instr.split(',') if t.strip()]
116
- return " , ".join(terms) if terms else ""
117
 
118
  def generate_display_prompts(description, product_name, benefits, key_message, chosen_approach,
119
  gender, generation, psychotype, business_stage, industry, opf):
 
113
 
114
  def format_instruction_string(instr):
115
  terms = [t.strip() for t in instr.split(',') if t.strip()]
116
+ return ", ".join(terms) if terms else ""
117
 
118
  def generate_display_prompts(description, product_name, benefits, key_message, chosen_approach,
119
  gender, generation, psychotype, business_stage, industry, opf):