Я использую spyder, и у меня есть код, который выглядит примерно так
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(decay_positions, cos_theta, phi)
, для которого второй i
в decay_positions
превышает рекомендуемое количество символов в строке (что-то вроде90).У меня динамический анализ PEP8, поэтому он, естественно, дает мне предупреждение для анализа кода.Так что же делать в этом случае с PEP8Это
detector_x, detector_y, smeared_x, smeared_y = \
gamma_detection(decay_positions, cos_theta, phi)
, который технически все еще работает, но он дает мне предупреждение
E122 continuation line missing indentation or outdented
или
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(
decay_positions, cos_theta, phi)
или это
detector_x, detector_y, smeared_x, smeared_y = gamma_detection(
decay_positions, cos_theta, phi)