tombetthauser commited on
Commit
412aa2c
Β·
1 Parent(s): eaa750e

Fix repeat syntax error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -146,7 +146,7 @@ def random_seed():
146
 
147
  # make markdown text for available models...
148
  markdown_model_tags = [f"<{model}>" for model in model_tags if model != "ahx-model-1" and model != "ahx-model-2"]
149
- markdown_model_text = "\n".join([markdown_model_tags)
150
 
151
  # make markdown text for available betas...
152
  markdown_betas_tags = [f"<{model}>" for model in model_tags if "beta" in model]
 
146
 
147
  # make markdown text for available models...
148
  markdown_model_tags = [f"<{model}>" for model in model_tags if model != "ahx-model-1" and model != "ahx-model-2"]
149
+ markdown_model_text = "\n".join(markdown_model_tags)
150
 
151
  # make markdown text for available betas...
152
  markdown_betas_tags = [f"<{model}>" for model in model_tags if "beta" in model]