We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ecb66 commit a3d6ac1Copy full SHA for a3d6ac1
tools/check_python_h_first.py
@@ -62,7 +62,7 @@ def check_python_h_included_first(name_to_check: str) -> int:
62
if "*/" in line:
63
in_comment = False
64
continue
65
- match = re.match(HEADER_PATTERN, line)
+ match = HEADER_PATTERN.match(line)
66
if match:
67
this_header = match.group(1)
68
if this_header in PYTHON_INCLUDING_HEADERS:
0 commit comments