DontPlanToEnd commited on
Commit
84e058f
1 Parent(s): 89e8eb8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -12,7 +12,6 @@ def load_leaderboard_data(csv_file_path):
12
  df = pd.read_csv(csv_file_path)
13
  # Create hyperlinks in the Model column using HTML <a> tags with inline CSS for styling
14
  df['Model'] = df.apply(lambda row: f'<a href="{row["Link"]}" target="_blank" style="color: blue; text-decoration: none;">{row["Model"]}</a>' if pd.notna(row["Link"]) else row["Model"], axis=1)
15
- #df['Model'] = df.apply(lambda row: f'<a href="{row["Link"]}" target="_blank" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{row["Model"]}</a>' if pd.notna(row["Link"]) else row["Model"], axis=1)
16
  # Drop the 'Link' column as it's no longer needed
17
  df.drop(columns=['Link'], inplace=True)
18
  return df
 
12
  df = pd.read_csv(csv_file_path)
13
  # Create hyperlinks in the Model column using HTML <a> tags with inline CSS for styling
14
  df['Model'] = df.apply(lambda row: f'<a href="{row["Link"]}" target="_blank" style="color: blue; text-decoration: none;">{row["Model"]}</a>' if pd.notna(row["Link"]) else row["Model"], axis=1)
 
15
  # Drop the 'Link' column as it's no longer needed
16
  df.drop(columns=['Link'], inplace=True)
17
  return df