Spaces:
Sleeping
Sleeping
format output
Browse files
app.py
CHANGED
@@ -20,8 +20,8 @@ def build_chain_titres(choice):
|
|
20 |
)
|
21 |
if len(choice) > 0:
|
22 |
memory_titres += f" <t> {choice}"
|
23 |
-
return radio_titres_button, memory_titres
|
24 |
-
return choice, memory_titres
|
25 |
|
26 |
|
27 |
def reset_state():
|
|
|
20 |
)
|
21 |
if len(choice) > 0:
|
22 |
memory_titres += f" <t> {choice}"
|
23 |
+
return radio_titres_button, memory_titres.replace("<t>", "|")
|
24 |
+
return choice, memory_titres.replace("<t>", "|")
|
25 |
|
26 |
|
27 |
def reset_state():
|