Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 237 Bytes

File metadata and controls

5 lines (4 loc) · 237 Bytes

Lint regex_raw_strings

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#"..."#.