summaryrefslogtreecommitdiff
path: root/tests/backtest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
commitb26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (patch)
treef037dbb904169d1fa53d0c51961b0ee08b389e8a /tests/backtest.py
parentf4b9914ab81eca5762b66446afa3fd57f84d5ec5 (diff)
downloadpython-coveragepy-git-b26cf4981ebc3bdbcec03386b4ee2734f5e9a444.tar.gz
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'tests/backtest.py')
-rw-r--r--tests/backtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/backtest.py b/tests/backtest.py
index 439493d1..1b38cce1 100644
--- a/tests/backtest.py
+++ b/tests/backtest.py
@@ -20,7 +20,7 @@ def run_command(cmd):
stderr=subprocess.STDOUT
)
output, _ = proc.communicate()
- status = proc.returncode # pylint: disable=E1101
+ status = proc.returncode
# Get the output, and canonicalize it to strings with newlines.
if not isinstance(output, str):