We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I`m trying to run the script but every time it shows this error and nothing changes:
File "labwc-gtktheme.py", line 36 color.append(f"@{tokval}") ^ Syntax Error: invalid syntax
The text was updated successfully, but these errors were encountered:
What version of python are you running?
Sorry, something went wrong.
Just had a look. Seems like f-strings are supported from v3.6
Alternative "@{}".format(tokval) or just "@" + tokval in case you want to support Python < 3.6 as well.
"@{}".format(tokval)
"@" + tokval
No branches or pull requests
Hello, I`m trying to run the script but every time it shows this error and nothing changes:
The text was updated successfully, but these errors were encountered: