From 7774a0380b551266fc2c6440895c1f17a6e937ee Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 17 Feb 2014 22:56:55 -0600 Subject: fix pep8 --- tests/utils.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests') 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(" ", "") -- cgit v1.2.3