Use r in front of regex string to make flake8 happy

This means we should not escape the \ character in the same way
This commit is contained in:
Elijah DeLee
2018-11-15 17:06:38 -05:00
parent a68e22b114
commit 949cf53b89

View File

@@ -122,7 +122,7 @@ class TestSwaggerGeneration():
pattern = pattern.replace('{id}', '[0-9]+') pattern = pattern.replace('{id}', '[0-9]+')
pattern = pattern.replace(r'{category_slug}', r'[a-zA-Z0-9\-]+') pattern = pattern.replace(r'{category_slug}', r'[a-zA-Z0-9\-]+')
for path, result in swagger_autogen.items(): for path, result in swagger_autogen.items():
if re.match('^{}$'.format(pattern), path): if re.match(r'^{}$'.format(pattern), path):
for key, value in result.items(): for key, value in result.items():
method, status_code = key method, status_code = key
content_type, resp, request_data = value content_type, resp, request_data = value
@@ -168,13 +168,13 @@ class TestSwaggerGeneration():
# replace ISO dates w/ the same value so we don't generate # replace ISO dates w/ the same value so we don't generate
# needless diffs # needless diffs
data = re.sub( data = re.sub(
'[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]+Z', r'[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]+Z',
'2018-02-01T08:00:00.000000Z', r'2018-02-01T08:00:00.000000Z',
data data
) )
data = re.sub( data = re.sub(
'''(\s+"client_id": ")([a-zA-Z0-9]{40})("\,\s*)''', r'''(\s+"client_id": ")([a-zA-Z0-9]{40})("\,\s*)''',
'\\1xxxx\\3', r'\1xxxx\3',
data data
) )
f.write(data) f.write(data)