summaryrefslogtreecommitdiff
path: root/_pytest/assertion
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:08 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:44:22 +0200
commit617e510b6e4fb2e95a1486c8f30dd1e7583be248 (patch)
tree4dcf68d7b42fd781e442cc6d55142bd905b7c8bd /_pytest/assertion
parent4b22f270a3583c97034ab63a343defbee146666a (diff)
downloadpytest-617e510b6e4fb2e95a1486c8f30dd1e7583be248.tar.gz
Fixed E231 flake8 errors
missing whitespace after ‘,’, ‘;’, or ‘:’
Diffstat (limited to '_pytest/assertion')
-rw-r--r--_pytest/assertion/rewrite.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py
index 2ffa3c03e..1ae41bd14 100644
--- a/_pytest/assertion/rewrite.py
+++ b/_pytest/assertion/rewrite.py
@@ -36,10 +36,10 @@ PYC_TAIL = "." + PYTEST_TAG + PYC_EXT
REWRITE_NEWLINES = sys.version_info[:2] != (2, 7) and sys.version_info < (3, 2)
ASCII_IS_DEFAULT_ENCODING = sys.version_info[0] < 3
-if sys.version_info >= (3,5):
+if sys.version_info >= (3, 5):
ast_Call = ast.Call
else:
- ast_Call = lambda a,b,c: ast.Call(a, b, c, None, None)
+ ast_Call = lambda a, b, c: ast.Call(a, b, c, None, None)
class AssertionRewritingHook(object):