Skip to content

Commit da24168

Browse files
[Python] Fix recently introduced PEP-8 regression
1 parent ba8df10 commit da24168

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/line-directive

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ import re
2121
import subprocess
2222
import sys
2323

24-
line_pattern = re.compile(r'^// ###sourceLocation\(file:\s*"([^"]+)",\s*line:\s*([0-9]+)\s*\)')
24+
line_pattern = re.compile(
25+
r'^// ###sourceLocation\(file:\s*"([^"]+)",\s*line:\s*([0-9]+)\s*\)')
2526

2627

2728
def _make_line_map(filename, stream=None):

0 commit comments

Comments
 (0)