From e0a879f72fbd5bb9050c3637bdd012c25ad5e300 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 15 Feb 2015 20:54:34 -0800 Subject: Fixed new flake8 warnings from teh latest version --- tests/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/utils.py') 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": -- cgit v1.2.3