boatbomber commited on
Commit
a9abac4
·
1 Parent(s): 8fcbcdb

Remove backslash from fstring

Browse files
Files changed (1) hide show
  1. src/about.py +3 -2
src/about.py CHANGED
@@ -1,5 +1,6 @@
1
- TITLE = """<h1 align="center" id="space-title">Roblox LLM Leaderboard</h1>"""
2
 
 
3
 
4
  TASK_DESCRIPTIONS = [
5
  {
@@ -22,5 +23,5 @@ Tracking LLM capabilities regarding Roblox game development.
22
 
23
  ### Benchmarks:
24
 
25
- {"\n".join([f"- [{task['name']}]({task['link']}): {task['description']}" for task in TASK_DESCRIPTIONS])}
26
  """
 
1
+ NEWLINE = "\n"
2
 
3
+ TITLE = """<h1 align="center" id="space-title">Roblox LLM Leaderboard</h1>"""
4
 
5
  TASK_DESCRIPTIONS = [
6
  {
 
23
 
24
  ### Benchmarks:
25
 
26
+ {NEWLINE.join([f"- [{task['name']}]({task['link']}): {task['description']}" for task in TASK_DESCRIPTIONS])}
27
  """