You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex literal is not using raw strings.
Raw strings avoid unnecessary escaping of the regex and make the values much more readable.
Rewrite the regex literal using raw strings like r"..." or r#"..."#.