pylint woes

Terry Reedy tjreedy at udel.edu
Sat May 7 21:44:46 EDT 2016


On 5/7/2016 3:52 PM, Ray Cote wrote:

> Biggest issue I have with pyLint is that it complains when function
> parameters are indented twice vs. once. pyFlakes likes the twice.
> Example:
> def function_name(
>         parm_1,
>         long_parm_name,
>         ….
>         end_of_long_list_of params)
>     parm_1 = long_parm_name

This is the recommendation in PEP 8.  I would otherwise insert a blank 
line before the body.

tjr






More information about the Python-list mailing list