Kaludi commited on
Commit
b12c1f6
·
1 Parent(s): 3c540f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -3,7 +3,15 @@ import pandas as pd
3
  import io
4
  import base64
5
 
6
- st.set_page_config(page_title="Data Cleaning Tool", layout="wide")
 
 
 
 
 
 
 
 
7
 
8
  st.title("CSV Data Cleaning Tool")
9
 
@@ -71,11 +79,3 @@ st.markdown("")
71
  st.markdown("---")
72
  st.markdown("")
73
  st.markdown("<p style='text-align: center'><a href='https://github.com/Kaludii'>Github</a> | <a href='https://huggingface.co/Kaludi'>HuggingFace</a></p>", unsafe_allow_html=True)
74
-
75
- hide_streamlit_style = """
76
- <style>
77
- #MainMenu {visibility: hidden;}
78
- footer {visibility: hidden;}
79
- </style>
80
- """
81
- st.markdown(hide_streamlit_style, unsafe_allow_html=True)
 
3
  import io
4
  import base64
5
 
6
+ st.set_page_config(page_title="Data Cleaning Tool")
7
+
8
+ hide_streamlit_style = """
9
+ <style>
10
+ #MainMenu {visibility: hidden;}
11
+ footer {visibility: hidden;}
12
+ </style>
13
+ """
14
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
15
 
16
  st.title("CSV Data Cleaning Tool")
17
 
 
79
  st.markdown("---")
80
  st.markdown("")
81
  st.markdown("<p style='text-align: center'><a href='https://github.com/Kaludii'>Github</a> | <a href='https://huggingface.co/Kaludi'>HuggingFace</a></p>", unsafe_allow_html=True)