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
The following code…
dict(a='AAA' f'{4*2}', b=[ 'BBB', 'BBB', ], c='CCC')
…causes
example.py:6:6: E122 continuation line missing indentation or outdented
The required conditions for this false positive appear to be:
The false positive does not occur if:
a
b
Verified with flake8 7.1.1
The text was updated successfully, but these errors were encountered:
fairly certain this is a duplicate of #408 and/or #372 -- that said that code is pretty ugly so not surprised there's a diagnostic from it
Sorry, something went wrong.
No branches or pull requests
The following code…
…causes
The required conditions for this false positive appear to be:
The false positive does not occur if:
a
is only an f-stringa
is a new line concatenated string without an f-stringb
is a single line list literalb
occurs beforea
Verified with flake8 7.1.1
The text was updated successfully, but these errors were encountered: