DavMelchi commited on
Commit
05107b2
·
1 Parent(s): 9d2b604

Remove wrong excel support

Browse files
Files changed (1) hide show
  1. apps/kpi_analysis/anomalie.py +1 -1
apps/kpi_analysis/anomalie.py CHANGED
@@ -8,7 +8,7 @@ import streamlit as st
8
 
9
  st.title("KPIsAnomaly Detection")
10
 
11
- uploaded_file = st.file_uploader("Upload KPI file", type=["csv", "xlsx"])
12
  penalty = st.number_input("Penalty", min_value=1.0, max_value=100.0, value=2.5)
13
 
14
 
 
8
 
9
  st.title("KPIsAnomaly Detection")
10
 
11
+ uploaded_file = st.file_uploader("Upload KPI file", type=["csv"])
12
  penalty = st.number_input("Penalty", min_value=1.0, max_value=100.0, value=2.5)
13
 
14