-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address invalid escape sequences in strings
The backslash character is an escape sequence in Python strings. These strings contain backslashes which do not intend to escape the following character, but rather include the backslash in the string. There are two possible resolutions: 1. Make the string a "raw" string by prefixing it with "r". This effectively makes backslashes into a normal character. 2. Escape the backslashes with another backslash. I used both approaches in this change where appropriate.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters