This repository was archived by the owner on Oct 1, 2019. It is now read-only.
This repository was archived by the owner on Oct 1, 2019. It is now read-only.
Wrong wrap of raise expressions when line is too long #65
Open
Description
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).'
)