Spaces:
Runtime error
Runtime error
Commit
·
98c0585
1
Parent(s):
daf6854
Update app.py
Browse files
app.py
CHANGED
@@ -106,5 +106,5 @@ if __name__ == "__main__":
|
|
106 |
st.write("The generated image will appear here.")
|
107 |
if webcam:
|
108 |
st.image(webcam)
|
109 |
-
if '
|
110 |
st.image(st.session_state["result"])
|
|
|
106 |
st.write("The generated image will appear here.")
|
107 |
if webcam:
|
108 |
st.image(webcam)
|
109 |
+
if 'result' in st.session_state:
|
110 |
st.image(st.session_state["result"])
|