hhhar commited on
Commit
82a13be
·
verified ·
1 Parent(s): ae41b32

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ def process_uploaded_file(uploaded_file, required_columns):
47
 
48
  # Standardize column names to uppercase and strip spaces
49
  df.columns = df.columns.str.upper().str.strip()
50
- st.write("DataFrame columns:", df.columns.tolist())
51
 
52
  # Standardize required columns to uppercase and strip spaces
53
  required_columns_upper = [col.upper().strip() for col in required_columns]
 
47
 
48
  # Standardize column names to uppercase and strip spaces
49
  df.columns = df.columns.str.upper().str.strip()
50
+ # st.write("DataFrame columns:", df.columns.tolist())
51
 
52
  # Standardize required columns to uppercase and strip spaces
53
  required_columns_upper = [col.upper().strip() for col in required_columns]