Spaces:
Running
Running
import pandas as pd | |
def load_leaderboard(db_path): | |
df = pd.read_csv(db_path) # Update table name if needed | |
return df | |
custom_css = """ | |
#leaderboard-table th .header-content { | |
white-space: nowrap; | |
} | |
""" | |