Skip to content

Commit 1907537

Browse files
committed
Pre-commit compliance
1 parent 25c06e6 commit 1907537

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pre_commit/languages/pygrep.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ def _process_filename_at_once(pattern, filename):
3333
match = pattern.search(f.read())
3434
if match:
3535
retv = 1
36-
output.write('{}:{}-{}:'.format(filename, match.start(), match.end()))
36+
output.write(
37+
'{}:{}-{}:'.format(filename, match.start(), match.end()),
38+
)
3739
output.write_line(match.group())
3840
return retv
3941

0 commit comments

Comments
 (0)