Update utils.py
Browse files
utils.py
CHANGED
@@ -489,7 +489,7 @@ def create_leaderboard_display_multilingual(df, selected_country, selected_metri
|
|
489 |
# Filter by country if specified
|
490 |
if selected_country and selected_country.upper() != 'ALL':
|
491 |
print(f"Filtering leaderboard by country: {selected_country}")
|
492 |
-
print(df
|
493 |
df = df[df['country'] == selected_country]
|
494 |
df = df.drop(columns=['country'])
|
495 |
|
|
|
489 |
# Filter by country if specified
|
490 |
if selected_country and selected_country.upper() != 'ALL':
|
491 |
print(f"Filtering leaderboard by country: {selected_country}")
|
492 |
+
print(df)
|
493 |
df = df[df['country'] == selected_country]
|
494 |
df = df.drop(columns=['country'])
|
495 |
|