Skip to content

Commit c430fe9

Browse files
committed
Fix workflows error
1 parent d7485da commit c430fe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
content = f.read()
4040
4141
# Add statistics section if it doesn't exist
42-
stats_section = f\"\"\"
42+
stats_section = f"""
4343
## Statistics 📊
4444
4545
- Easy: {counts['easy']} solutions
4646
- Medium: {counts['medium']} solutions
4747
- Hard: {counts['hard']} solutions
4848
- Total: {sum(counts.values())} solutions
49-
\"\"\"
49+
"""
5050
5151
if '## Statistics' in content:
5252
# Replace existing statistics section

0 commit comments

Comments
 (0)