Skip to content

Tag: lint

Python lint issue : invalid escape sequence ‘/’

This is my python code line which is giving me invalid escape sequence ‘/’ lint issue. It is giving me out that error for all the backslash I used here . any idea how to resolve this ? Answer There’s two issues here: Since this is not a raw string, the backslashes are string escapes, not reg…