howdy
howdy copied to clipboard
Fix SyntaxWarning for invalid escape sequence in regex
Use raw string (r'...') for regex pattern to avoid SyntaxWarning about invalid escape sequences like \w. This warning will become an error in future Python versions.
(I used Claude Code for this)
(I encountered the warning after enabling the nod rubber stamp)