Line is too long. Django PEP8

*爱你&永不变心* 提交于 2019-12-03 06:30:47

问题


PEP8 info:

models.py:10:80: E501 line too long (83 > 79 characters)

Models.py:

field = TreeForeignKey('self', null=True, blank=True, related_name='abcdefgh')

How to correctly write this line?


回答1:


It's "correct", PEP8 just flags lines over 79 characters long. But if you're concerned about that, you could write it like this:

field = TreeForeignKey('self',
                       null=True,
                       blank=True,
                       related_name='abcdefgh')

Or this:

field = TreeForeignKey(
    'self',
    null=True,
    blank=True,
    related_name='abcdefgh',
)

Or, really, any other style that would break the single line into multiple shorter lines.




回答2:


I just found this neat program called autopep8! https://github.com/hhatto/autopep8

pip install autopep8
autopep8 -i models.py

You can also do (recursively):

autopep8 -ri package/

Auto PEP8 only makes safe changes to the files, only changing layout, not code logic.




回答3:


If you have some ridiculous long string that isn't very convenient to break into pieces (thinking about things like Sentry DSNs, the occasional module in MIDDLEWARE or INSTALLED_APPS), you can just put # noqa at the end of the line and the linters will ignore the line. Use sparingly thou and definitely not for the case you asked for.




回答4:


This is very subjective. I'd write, if I were following E501 strictly:

field = TreeForeignKey('self',
                       null=True,
                       blank=True,
                       related_name='abcdefgh')

I usually consider 100 too long, not 80.




回答5:


I usually split that to line up the parameters one level of indentation deeper than the original line, like:

field = TreeForeignKey('self', null=True,
    blank=True, related_name='abcdefgh')

Especially if TreeForeignKey is something like TreeForeignKeyWithReferencesToSomethingElse, in which case all the parameters would start out to the far right of the window if you lined them all up with the opening parenthesis. If any of the parameters had a long name like defaultvalueforcertaincircumstances, you might not be able to fit the whole thing in under 80 columns:

field = TreeForeignKeyWithReferencesToSomethingElse('self',
                                                    defaultvalueforcertaincircumstances='foo')

I also prefer to put multiple function parameters on the same line (except when it just doesn't look right; I'm not a purist!) so that vertical space isn't overly expanded, causing me to spend more time scrolling around in my editor than otherwise necessary.



来源:https://stackoverflow.com/questions/14143284/line-is-too-long-django-pep8

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!