Spaces:
Runtime error
Runtime error
Update appStore/multiapp.py
Browse files- appStore/multiapp.py +3 -0
appStore/multiapp.py
CHANGED
@@ -45,6 +45,9 @@ class MultiApp:
|
|
45 |
})
|
46 |
|
47 |
def run(self):
|
|
|
|
|
|
|
48 |
st.sidebar.write(format_func=lambda app: app['title'])
|
49 |
image = Image.open('appStore/img/sdsn.png')
|
50 |
st.sidebar.image(image)
|
|
|
45 |
})
|
46 |
|
47 |
def run(self):
|
48 |
+
if 'file' not in st.session_state:
|
49 |
+
st.session_state['file'] = None
|
50 |
+
|
51 |
st.sidebar.write(format_func=lambda app: app['title'])
|
52 |
image = Image.open('appStore/img/sdsn.png')
|
53 |
st.sidebar.image(image)
|