plugin-python icon indicating copy to clipboard operation
plugin-python copied to clipboard

Wrong wrap of raise expressions when line is too long

Open patrick91 opened this issue 7 years ago • 0 comments

this:

raise NotImplementedError(
    'The SimpleListFilter.lookups() method must be overridden to '
    'return a list of tuples (value, verbose value).'
)

gets converted to

raise 
NotImplementedError('The SimpleListFilter.lookups() method must be overridden to '
    'return a list of tuples (value, verbose value).'
)

patrick91 avatar Mar 03 '18 16:03 patrick91