summaryrefslogtreecommitdiff
path: root/_pytest/assertion
diff options
context:
space:
mode:
authorAndras Tim <andras.tim@gmail.com>2017-07-17 01:25:07 +0200
committerAndras Tim <andras.tim@gmail.com>2017-07-17 01:28:16 +0200
commit57438f3efe487106a5bc779237c5e4e84bd3f4f0 (patch)
treedda33f9392fe66c03b7c7b736e3d8e9308443899 /_pytest/assertion
parente855a79dd4d3976c3432f08c4b5f57333dcb3917 (diff)
downloadpytest-57438f3efe487106a5bc779237c5e4e84bd3f4f0.tar.gz
Fixed E127 flake8 errors
continuation line over-indented for visual indent
Diffstat (limited to '_pytest/assertion')
-rw-r--r--_pytest/assertion/rewrite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py
index 6ec54d7e7..1849d9cba 100644
--- a/_pytest/assertion/rewrite.py
+++ b/_pytest/assertion/rewrite.py
@@ -723,7 +723,7 @@ class AssertionRewriter(ast.NodeVisitor):
if isinstance(assert_.test, ast.Tuple) and self.config is not None:
fslocation = (self.module_path, assert_.lineno)
self.config.warn('R1', 'assertion is always true, perhaps '
- 'remove parentheses?', fslocation=fslocation)
+ 'remove parentheses?', fslocation=fslocation)
self.statements = []
self.variables = []
self.variable_counter = itertools.count()