aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2015-02-16 09:18:25 +0000
committerAlex Stapleton <alexs@prol.etari.at>2015-02-16 09:18:25 +0000
commitebc1717d73eaccffeddc32cee9eb0ad5936f7a4b (patch)
treeb75a606f28146b74b496fb45216f55a864a09e11 /tests
parentb8dc2f03ff2af2139ef9d77552562b0dce18d6bd (diff)
parente0a879f72fbd5bb9050c3637bdd012c25ad5e300 (diff)
downloadcryptography-ebc1717d73eaccffeddc32cee9eb0ad5936f7a4b.tar.gz
cryptography-ebc1717d73eaccffeddc32cee9eb0ad5936f7a4b.tar.bz2
cryptography-ebc1717d73eaccffeddc32cee9eb0ad5936f7a4b.zip
Merge pull request #1664 from alex/flake8
Fixed new flake8 warnings from teh latest version
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 37efc580..65c99fbf 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -83,8 +83,8 @@ def load_nist_vectors(vector_data):
line = line.strip()
# Blank lines, comments, and section headers are ignored
- if not line or line.startswith("#") or (line.startswith("[")
- and line.endswith("]")):
+ if not line or line.startswith("#") or (line.startswith("[") and
+ line.endswith("]")):
continue
if line.strip() == "FAIL":