pep8- 视觉缩进缩进下的续行

pep8- conituation line under indented for visual indent

我 运行 在我的 eclipse 上使用了 pep-8,遇到了这个错误,但不确定如何修复它..

'''
Created on Aug 31, 2015

@author: testuser
'''


def telemetry_client_show_alarm_history_testststsststst(id1, name):
    pass

show_alarm = telemetry_client_show_alarm_history_testststsststst('alarm_id',
                                            'tessdlkjsdsdsdsdsdsdsdt')

错误

E128 continuation line under-indented for visual indent

我该如何解决这个错误?

注意:方法名称是虚拟名称,用于在 eclipse 中重现此错误..

当函数调用跨行中断时,第二个和后续参数在视觉上应与第一个参数对齐,如下所示:

show_alarm = telemetry_client_show_alarm_history_testststsststst('alarm_id',
                                                                 'tessdlkjsdsdsdsdsdsdsdt')

如果这会产生不良结果,例如行太长,您可以在第一个参数之前添加一个换行符,如下所示:

show_alarm = telemetry_client_show_alarm_history_testststsststst(
    'alarm_id',
    'tessdlkjsdsdsdsdsdsdsdt')

这是一个 linting 警告,代码本身应该 运行 没问题。这意味着缩进的参数没有与封闭的括号对齐,例如

show_alarm = telemetry_client_show_alarm_history_testststsststst('alarm_id',
                                                                 'tessdlkjsdsdsdsdsdsdsdt')

另见 https://www.python.org/dev/peps/pep-0008/#indentation

如果您能够使用较短的函数名称,那是最简单的解决方案。