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 | 29356409a6827e78d3f5aa18d9a7939bee7b6fca (patch) | |
tree | ab1281f62f1be63d346707c5fc812596010bc347 /tests/backtest.py | |
parent | f81c9233740f5c2968447dd58d1185fa24994df0 (diff) | |
download | python-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.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 439493d..1b38cce 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): |