Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -253,6 +253,7 @@ try:
|
|
| 253 |
currFile in st.session_state.results
|
| 254 |
and currFile in st.session_state.summaries
|
| 255 |
and len(st.session_state.results[currFile]) > 0
|
|
|
|
| 256 |
):
|
| 257 |
raise ValueError("File not yet analyzed")
|
| 258 |
|
|
|
|
| 253 |
currFile in st.session_state.results
|
| 254 |
and currFile in st.session_state.summaries
|
| 255 |
and len(st.session_state.results[currFile]) > 0
|
| 256 |
+
and st.session_state.summaries[currFile].get("speakers_dataFrame") is not None
|
| 257 |
):
|
| 258 |
raise ValueError("File not yet analyzed")
|
| 259 |
|