PEP8: conflict between W292 and W391
W391 is a blank line, that is, two consecutive \n
s. There is no conflict.
This is what W391 is talking about:
print 'last line'
This is wrong according to W292:
print 'last line'
What is correct is:
print 'last line'