From 5fceed2d9be1001fc486d801e0a0f923d8dd3159 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 29 Sep 2015 11:20:38 -0400 Subject: Make tox pep8 happy Signed-off-by: Simo Sorce Reviewed-by: Christian Heimes --- tests/tests.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tests/tests.py') diff --git a/tests/tests.py b/tests/tests.py index 5a2837e..02a3268 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -1,9 +1,13 @@ from __future__ import absolute_import + +import unittest + +from tests.custodia import CustodiaTests + +from custodia.message.kem import KEMTests from custodia.secrets import SecretsTests from custodia.store.sqlite import SqliteStoreTests -from custodia.message.kem import KEMTests -from tests.custodia import CustodiaTests -import unittest + if __name__ == '__main__': testLoad = unittest.TestLoader() -- cgit