Spaces:
Sleeping
Sleeping
Fix f-string syntax error
Browse files- 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 |
-
{
|
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:
|