Pre-commit compliance

This commit is contained in:
Thierry Deo 2018-03-07 09:35:08 +01:00
parent 25c06e6525
commit 19075371fa

View file

@ -33,7 +33,9 @@ def _process_filename_at_once(pattern, filename):
match = pattern.search(f.read())
if match:
retv = 1
output.write('{}:{}-{}:'.format(filename, match.start(), match.end()))
output.write(
'{}:{}-{}:'.format(filename, match.start(), match.end()),
)
output.write_line(match.group())
return retv