-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Originally reported by: Steven Myint (BitBucket: myint, GitHub: @myint?)
This valid style is incorrectly labeled as bad-continuation.
def test():
if (
True or
False
):
passC: 3, 0: Wrong hanging indentation before block.
True or
^ | (bad-continuation)
C: 4, 0: Wrong hanging indentation before block.
False
^ | (bad-continuation)
As described in #232, there are more false positives demonstrated in E12not.py.
Reactions are currently unavailable