CosmickVisions commited on
Commit
7e22295
·
verified ·
1 Parent(s): b34f399

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -17,6 +17,9 @@ from scipy import stats
17
  from sklearn.preprocessing import StandardScaler, LabelEncoder, OneHotEncoder
18
  import tempfile
19
 
 
 
 
20
  # Load environment variables
21
  load_dotenv()
22
 
@@ -567,5 +570,4 @@ def main():
567
  """, unsafe_allow_html=True)
568
 
569
  if __name__ == "__main__":
570
- st.set_page_config(page_title="Data-Vision Pro", layout="wide")
571
  main()
 
17
  from sklearn.preprocessing import StandardScaler, LabelEncoder, OneHotEncoder
18
  import tempfile
19
 
20
+ # Set page config as the first Streamlit command
21
+ st.set_page_config(page_title="Data-Vision Pro", layout="wide")
22
+
23
  # Load environment variables
24
  load_dotenv()
25
 
 
570
  """, unsafe_allow_html=True)
571
 
572
  if __name__ == "__main__":
 
573
  main()