diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2015-02-16 09:18:25 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2015-02-16 09:18:25 +0000 |
commit | ebc1717d73eaccffeddc32cee9eb0ad5936f7a4b (patch) | |
tree | b75a606f28146b74b496fb45216f55a864a09e11 /tests | |
parent | b8dc2f03ff2af2139ef9d77552562b0dce18d6bd (diff) | |
parent | e0a879f72fbd5bb9050c3637bdd012c25ad5e300 (diff) | |
download | cryptography-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.py | 4 |
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": |