What is PEP8's E128: continuation line under-indented for visual indent?
--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 5 Looping
--
Chapters
00:00 What Is Pep8'S E128: Continuation Line Under-Indented For Visual Indent?
00:29 Accepted Answer Score 565
01:03 Answer 2 Score 23
01:26 Thank you
--
Full question
https://stackoverflow.com/questions/1543...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #sublimetext2 #pep8
#avk47
    Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 5 Looping
--
Chapters
00:00 What Is Pep8'S E128: Continuation Line Under-Indented For Visual Indent?
00:29 Accepted Answer Score 565
01:03 Answer 2 Score 23
01:26 Thank you
--
Full question
https://stackoverflow.com/questions/1543...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #sublimetext2 #pep8
#avk47
ACCEPTED ANSWER
Score 565
PEP-8 recommends you indent lines to the opening parentheses if you put anything on the first line, so it should either be indenting to the opening bracket:
urlpatterns = patterns('',
                       url(r'^$', listing, name='investment-listing'))
or not putting any arguments on the starting line, then indenting to a uniform level:
urlpatterns = patterns(
    '',
    url(r'^$', listing, name='investment-listing'),
)
urlpatterns = patterns(
    '', url(r'^$', listing, name='investment-listing'))
I suggest taking a read through PEP-8 - you can skim through a lot of it, and it's pretty easy to understand, unlike some of the more technical PEPs.
ANSWER 2
Score 23
This goes also for statements like this (auto-formatted by PyCharm):
    return combine_sample_generators(sample_generators['train']), \
           combine_sample_generators(sample_generators['dev']), \
           combine_sample_generators(sample_generators['test'])
Which will give the same style-warning. In order to get rid of it I had to rewrite it to:
    return \
        combine_sample_generators(sample_generators['train']), \
        combine_sample_generators(sample_generators['dev']), \
        combine_sample_generators(sample_generators['test'])