ubowang commited on
Commit
52d6423
·
verified ·
1 Parent(s): 79bf19f

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -0
utils.py CHANGED
@@ -103,6 +103,7 @@ def get_df():
103
  repo.git_pull()
104
  df = pd.read_csv(CSV_DIR)
105
  df = df.sort_values(by=['Overall'], ascending=False)
 
106
  return df[COLUMN_NAMES]
107
 
108
 
 
103
  repo.git_pull()
104
  df = pd.read_csv(CSV_DIR)
105
  df = df.sort_values(by=['Overall'], ascending=False)
106
+ print("df[COLUMN_NAMES]", df[COLUMN_NAMES])
107
  return df[COLUMN_NAMES]
108
 
109