Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix syntax warning about an invalid escape sequence
With Python 3.12, invalid escape sequences like `\.` in string literals cause a syntax warning: ``` service/backend/_utils.py:46: SyntaxWarning: invalid escape sequence '\.' version = re.sub("\.r[0-9]+$", "", version) ``` Fix this by using the raw string notation instead.
- Loading branch information