Closed speleo3 closed 11 months ago
Thanks! We just need to cherry pick the relevant commit from incentive. @TstewDev
Fixed via c3e298356a13f93fce939f860800625272754c97
Thanks for catching this. We're behind on some cherrypicking; will try to update by year's end.
Invalid escape sequences are deprecated since Python 3.6 and will eventually become a
SyntaxError
. They can be identified using a linter likeruff
orflake8
with the W605 rule:These strings should use raw string syntax (
r
prefix) or the backslashes should be escaped.