Skip to content

Commit 9172777

Browse files
committed
docs:fix warning invalid escape sequence
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent b82e9c0 commit 9172777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_ext/gen_include.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def get_doxyfile_input_paths(app, doxyfile_path):
9090
# process only lines that are not comments
9191
if line.find("#") == -1:
9292
# extract header file path inside components folder
93-
m = re.search("include/(.*\.h)", line) # noqa: W605 - regular expression
93+
m = re.search(r"include/(.*\.h)", line) # noqa: W605 - regular expression
9494
header_file_path = m.group(0)
9595

9696
doxyfile_INPUT.append(header_file_path)

0 commit comments

Comments
 (0)