Skip to content

Commit

Permalink
Fix reddit_machine.py improper string concatenation
Browse files Browse the repository at this point in the history
This syntax is way too close to creating a tuple
  • Loading branch information
Casper-Guo committed Dec 1, 2024
1 parent 7393bba commit 16adc8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reddit_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def main():
{
"image_path": VISUALS_PATH / "laptime.png",
"caption": (
"Point finishers' lap times. White vertical bars represent pitstops. ",
f"{dashboard_link}",
"Point finishers' lap times. White vertical bars represent pitstops. "
f"{dashboard_link}"
),
},
{
Expand Down

0 comments on commit 16adc8c

Please sign in to comment.