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
pycodestyle version: 2.12.0
In the following example
num_packets_per_sec = 10 num_packets_in_one_min = num_packets_per_sec*60 print(f"Number of packets in one minute: {num_packets_per_sec*60}")
pycodestyle returns E226 missing whitespace around arithmetic operator on the second line, but not the third line. Has this been reported before?
E226 missing whitespace around arithmetic operator
The text was updated successfully, but these errors were encountered:
you need to use 3.12+ for tokenization inside fstring
please search there are several duplicates
Sorry, something went wrong.
No branches or pull requests
pycodestyle version: 2.12.0
In the following example
pycodestyle returns
E226 missing whitespace around arithmetic operator
on the second line, but not the third line. Has this been reported before?The text was updated successfully, but these errors were encountered: