jostlebot commited on
Commit
b724376
·
1 Parent(s): d26dbd2

Fix f-string syntax error

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -135,7 +135,7 @@ with st.form("setup_form"):
135
  - *Approach*: {voice['style']}
136
 
137
  *Example phrases*:
138
- {"".join([f"- {ex}\\n" for ex in voice['examples']])}
139
  """)
140
 
141
  with col2:
 
135
  - *Approach*: {voice['style']}
136
 
137
  *Example phrases*:
138
+ {chr(10).join([f"- {ex}" for ex in voice['examples']])}
139
  """)
140
 
141
  with col2: