Fix pycodestyle complaints

Apparently, pycodestyle updated itself to now check for invalid escape
sequences, which only complain if the regex in use isn't a raw string
(r"").
This commit is contained in:
Daniel Quinn
2018-09-09 20:00:12 +01:00
parent 16ba221ad9
commit 6b63ce9201
4 changed files with 6 additions and 5 deletions

View File

@@ -166,7 +166,7 @@ class TestMatching(TestCase):
def test_match_regex(self):
self._test_matching(
"alpha\w+gamma",
r"alpha\w+gamma",
"MATCH_REGEX",
(
"I have alpha_and_gamma in me",