commit | 7774a0380b551266fc2c6440895c1f17a6e937ee | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Mon Feb 17 22:56:55 2014 -0600 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Mon Feb 17 22:56:55 2014 -0600 |
tree | d9623f3fb00f06f48f6149d49571d4ef176d1fb5 | |
parent | 7a01afca611d9987714822a6078efd190864124c [diff] |
fix pep8
diff --git a/tests/utils.py b/tests/utils.py index bcd915b..5262b73 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -186,9 +186,10 @@ 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(" ", "")