aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-02-15 20:54:34 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2015-02-15 20:54:34 -0800
commite0a879f72fbd5bb9050c3637bdd012c25ad5e300 (patch)
treeb75a606f28146b74b496fb45216f55a864a09e11 /tests/utils.py
parentb8dc2f03ff2af2139ef9d77552562b0dce18d6bd (diff)
downloadcryptography-e0a879f72fbd5bb9050c3637bdd012c25ad5e300.tar.gz
cryptography-e0a879f72fbd5bb9050c3637bdd012c25ad5e300.tar.bz2
cryptography-e0a879f72fbd5bb9050c3637bdd012c25ad5e300.zip
Fixed new flake8 warnings from teh latest version
Diffstat (limited to 'tests/utils.py')
-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":