QuantumLearner commited on
Commit
44168bb
·
verified ·
1 Parent(s): 81de65a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -392,3 +392,11 @@ elif selected == "TA-Enhanced DTW Pattern Recognition":
392
  st.plotly_chart(fig1)
393
  with col2:
394
  st.plotly_chart(fig2)
 
 
 
 
 
 
 
 
 
392
  st.plotly_chart(fig1)
393
  with col2:
394
  st.plotly_chart(fig2)
395
+
396
+ hide_streamlit_style = """
397
+ <style>
398
+ #MainMenu {visibility: hidden;}
399
+ footer {visibility: hidden;}
400
+ </style>
401
+ """
402
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)