Skip to content

Commit

Permalink
python: clear out syntax warnings
Browse files Browse the repository at this point in the history
```
python/makefile.py:55: SyntaxWarning: invalid escape sequence '\s'
  "^#\s*include.*_clippy.c",
```

Link: https://docs.python.org/fr/3/library/re.html#module-re
Signed-off-by: Ariel Otilibili <[email protected]>
  • Loading branch information
ariel-anieli committed Nov 25, 2024
1 parent 5456bc5 commit 5e39900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/makefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"grep",
"-l",
"-P",
"^#\s*include.*_clippy.c",
r"^#\s*include.*_clippy.c",
"--",
"**.c",
]
Expand Down

0 comments on commit 5e39900

Please sign in to comment.