adt commited on
Commit
99df430
·
1 Parent(s): 1527f28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -18,6 +18,8 @@ def get_data():
18
  skiprows=1,
19
  )
20
 
 
 
21
  # Drop rows where the 'Model' column is NaN
22
  df.dropna(subset=['Model'], inplace=True)
23
 
 
18
  skiprows=1,
19
  )
20
 
21
+ print(df.columns)
22
+
23
  # Drop rows where the 'Model' column is NaN
24
  df.dropna(subset=['Model'], inplace=True)
25