Closed dsotirho-ucsc closed 1 month ago
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
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
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