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



--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to