diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-25 23:28:21 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2014-03-25 23:28:21 +0100 |
commit | e9218880caa903765864a27fd024a690fe42a31d (patch) | |
tree | 42dd0061f75762ae2751b75fe585403215e55bc3 /testsuite | |
parent | fed43c5b560c90995e2ea3f742f2bf6b6e497657 (diff) | |
download | pep8-e9218880caa903765864a27fd024a690fe42a31d.tar.gz |
Report E131 instead of E121 / E126 for unaligned hanging indent
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/E12.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/E12.py b/testsuite/E12.py index ed12232..ac42886 100644 --- a/testsuite/E12.py +++ b/testsuite/E12.py @@ -58,11 +58,11 @@ rv.update(dict.fromkeys(( 'reasonComment_de', 'reasonComment_it'), '?'), "foo") -#: E126 E126 +#: E126 abricot = 3 + \ 4 + \ 5 + 6 -#: E126 +#: E131 print "hello", ( "there", @@ -208,7 +208,7 @@ my_list = [ 1, 2, 3, 4, 5, 6, ] -#: E126 E126 +#: E126 abris = 3 + \ 4 + \ 5 + 6 @@ -242,7 +242,7 @@ if ( ) or y == 4): pass -#: E126 +#: E131 troublesome_hash = { "hash": "value", "long": "the quick brown fox jumps over the lazy dog before doing a " |