forked from coala/coala-bears
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
W605 is a warning for invalid escape sequences. In python 3.6, Unknown escapes consisting of '\' and an ASCII letter in regular expressions will cause an warning.In the upcoming python versions this would be treated as an error. Owing to it pycodestyle have added this check for future Python versions. The alternative way to escape special characters now is to append a extra `\` infront of the sequences. Escape the characters by double backticks. Fixes coala#2760
- Loading branch information
1 parent
4ea07ce
commit 25a2c43
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