Clémentine commited on
Commit
cd67f11
1 Parent(s): 8c49cb6
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -241,7 +241,7 @@ def filter_models(
241
  if show_deleted:
242
  filtered_df = df[current_columns]
243
  else: # Show only still on the hub models
244
- filtered_df = df[df[AutoEvalColumn.still_on_hub.name] is True][current_columns]
245
 
246
  if type_query != "all":
247
  type_emoji = type_query[0]
 
241
  if show_deleted:
242
  filtered_df = df[current_columns]
243
  else: # Show only still on the hub models
244
+ filtered_df = df[df[AutoEvalColumn.still_on_hub.name] == True][current_columns]
245
 
246
  if type_query != "all":
247
  type_emoji = type_query[0]