"How can I adequately make line breaks in python to avoid E501 and subsequent E502 and E127 / 128 style errors?"
progress = Utils.ProgressMeter('Source strings separated by white ' 'space are automatically concatenated by the ' 'interpreter and parenthesis are the natural syntax ' 'for line continuation. Remember to use trailing ' 'spaces.')
Since the E502 error is already in parentheses, the backslash is redundant. Have you tried to fix it?
source share