diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 22:56:55 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 22:56:55 -0600 |
commit | 7774a0380b551266fc2c6440895c1f17a6e937ee (patch) | |
tree | d9623f3fb00f06f48f6149d49571d4ef176d1fb5 | |
parent | 7a01afca611d9987714822a6078efd190864124c (diff) | |
download | cryptography-7774a0380b551266fc2c6440895c1f17a6e937ee.tar.gz cryptography-7774a0380b551266fc2c6440895c1f17a6e937ee.tar.bz2 cryptography-7774a0380b551266fc2c6440895c1f17a6e937ee.zip |
fix pep8
-rw-r--r-- | tests/utils.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/utils.py b/tests/utils.py index bcd915be..5262b733 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -186,9 +186,10 @@ def load_pkcs1_vectors(vector_data): examples = [] vectors = [] for line in vector_data: - if (line.startswith("# PSS Example") or - line.startswith("# PKCS#1 v1.5 Signature") - ): + if ( + line.startswith("# PSS Example") or + line.startswith("# PKCS#1 v1.5 Signature") + ): if example_vector: for key, value in six.iteritems(example_vector): hex_str = "".join(value).replace(" ", "") |