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
ruff==0.1.14
def func(my_var: int) -> int: var = my_var * 2 print('var is {var}') return var
It might be useful if Ruff will find such places, I made a typo: 'var is {var}' instead of f'var is {var}'
'var is {var}'
f'var is {var}'
The text was updated successfully, but these errors were encountered:
I think this is a duplicate of #8151
Sorry, something went wrong.
Agreed -- I'd like to add this!
No branches or pull requests
ruff==0.1.14
It might be useful if Ruff will find such places, I made a typo:
'var is {var}'
instead off'var is {var}'
The text was updated successfully, but these errors were encountered: