diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
commit | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (patch) | |
tree | f037dbb904169d1fa53d0c51961b0ee08b389e8a /tests/backtest.py | |
parent | f4b9914ab81eca5762b66446afa3fd57f84d5ec5 (diff) | |
download | python-coveragepy-git-b26cf4981ebc3bdbcec03386b4ee2734f5e9a444.tar.gz |
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'tests/backtest.py')
-rw-r--r-- | tests/backtest.py | 2 |
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): |