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 b82e9c0 commit 9172777Copy full SHA for 9172777
docs/_ext/gen_include.py
@@ -90,7 +90,7 @@ def get_doxyfile_input_paths(app, doxyfile_path):
90
# process only lines that are not comments
91
if line.find("#") == -1:
92
# extract header file path inside components folder
93
- m = re.search("include/(.*\.h)", line) # noqa: W605 - regular expression
+ m = re.search(r"include/(.*\.h)", line) # noqa: W605 - regular expression
94
header_file_path = m.group(0)
95
96
doxyfile_INPUT.append(header_file_path)
0 commit comments