Spaces:
Running
Running
File size: 222 Bytes
04f495f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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;
}
"""
|