Skip to content

Commit

Permalink
Fix ceviche notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
mfschubert committed Jul 31, 2024
1 parent 4297641 commit 88658ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/notebooks/leaderboards/ceviche_challenges.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"def _trim_filename(name):\n",
" return name if len(name) < 40 else name[:25] + \"...\" + name[-12:]\n",
"\n",
"df[\"file\"] = [_trim_filename(f) for f in df[\"file\"]]]\n",
"df[\"file\"] = [_trim_filename(f) for f in df[\"file\"]]\n",
"\n",
"def plot_challenge_metrics(challenge_name: str) -> display.DisplayHandle:\n",
" challenge_df = df[df[\"challenge\"] == challenge_name]\n",
Expand Down

0 comments on commit 88658ce

Please sign in to comment.