break long lines (pep8)

This commit is contained in:
ishirav
2017-12-23 06:59:48 +02:00
parent ad0f0a0b5d
commit 4c38b28469
2 changed files with 6 additions and 3 deletions

View File

@@ -132,7 +132,8 @@ class MatchingModel(models.Model):
'''
findterms = re.compile(r'"([^"]+)"|(\S+)').findall
normspace = re.compile(r'\s+').sub
return [normspace(r'\s+', (t[0] or t[1]).strip()) for t in findterms(self.match)]
return [normspace(r'\s+', (t[0] or t[1]).strip())
for t in findterms(self.match)]
def save(self, *args, **kwargs):