Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -257,7 +257,7 @@ if st.session_state.screen == 2:
|
|
| 257 |
pass
|
| 258 |
|
| 259 |
output = ""
|
| 260 |
-
for key, value in character_dict:
|
| 261 |
output += str(key) + str(value)
|
| 262 |
|
| 263 |
st.write(output)
|
|
|
|
| 257 |
pass
|
| 258 |
|
| 259 |
output = ""
|
| 260 |
+
for key, value in character_dict.items():
|
| 261 |
output += str(key) + str(value)
|
| 262 |
|
| 263 |
st.write(output)
|