Hey, I bought the + version 2 days ago, but it's throwing errors for me in lines 255 and 257 in the two print(f" statements when simply launching the game from the sdk.
```
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/wordcounter+.rpy", line 255: invalid syntax
print(f" * {((longest_name-len(lbl))*blank) + lbl} | {(((longest_blocks-len(humanize(labelstats[lbl].blocks))) * blank)) + humanize(labelstats[lbl].blocks)} | {((longest_words-len(humanize(labelstats[lbl].words)))*blank) + humanize(labelstats[lbl].words)}")
^
File "game/wordcounter+.rpy", line 257: invalid syntax
print(f" * {((longest_name-len(total_text))*blank) + total_text} | {(((longest_blocks-len(humanize(filestats.blocks))) * blank)) + humanize(filestats.blocks)} | {((longest_words-len(humanize(filestats.words)))*blank) + humanize(filestats.words)}")
^
Ren'Py Version: Ren'Py 7.5.3.22090809
Fri Jan 24 08:50:57 2025
```
The formatting likely gets nuked here, but the ^ is located below the last parenthesis in both lines.
It's also the only 2 locations where print(f is used... which seems rather inconsistent with the other print( statements