summaryrefslogtreecommitdiff
path: root/tests/backtest.py
diff options
context:
space:
mode:
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):