Spaces:
Runtime error
Runtime error
Commit
·
7ff769f
1
Parent(s):
a3a0c58
Fix translation header
Browse files- apps/mic.py +1 -1
apps/mic.py
CHANGED
|
@@ -134,7 +134,7 @@ def app(state):
|
|
| 134 |
)
|
| 135 |
|
| 136 |
new_col2.write(
|
| 137 |
-
"**English Translation**: "+ sequence[0] if lang_id=="en" else translate(sequence[0])
|
| 138 |
)
|
| 139 |
with new_col2:
|
| 140 |
try:
|
|
|
|
| 134 |
)
|
| 135 |
|
| 136 |
new_col2.write(
|
| 137 |
+
"**English Translation**: "+ (sequence[0] if lang_id=="en" else translate(sequence[0]))
|
| 138 |
)
|
| 139 |
with new_col2:
|
| 140 |
try:
|