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
This SyntaxWarning occurs because Python attempts to evaluate escape sequences in string literals. However, regex has many uses for backslashes that aren't valid escape sequences.
We can get rid of this SyntaxWarning by prepending the string literal with an r. This makes a "raw string" which tells python to interpret the string literally.
The text was updated successfully, but these errors were encountered:
In Autodoist 2.0 the following is logged in the console:
This SyntaxWarning occurs because Python attempts to evaluate escape sequences in string literals. However, regex has many uses for backslashes that aren't valid escape sequences.
We can get rid of this SyntaxWarning by prepending the string literal with an
r
. This makes a "raw string" which tells python to interpret the string literally.The text was updated successfully, but these errors were encountered: