commit | 6324f4f4a11c8320ded41fbd77d1af47765d029a | [log] [tgz] |
---|---|---|
author | Gregory Haynes <greg@greghaynes.net> | Tue Dec 30 23:32:20 2014 -0800 |
committer | Gregory Haynes <greg@greghaynes.net> | Tue Dec 30 23:32:20 2014 -0800 |
tree | dbe142ca902642270deca63ecf20267d347d2439 | |
parent | 8487266a34bba8fdebc23281715a62a475406aa6 [diff] |
Fix import ordering in interfaces
diff --git a/src/cryptography/hazmat/primitives/interfaces/__init__.py b/src/cryptography/hazmat/primitives/interfaces/__init__.py index 2f9880d..b025d15 100644 --- a/src/cryptography/hazmat/primitives/interfaces/__init__.py +++ b/src/cryptography/hazmat/primitives/interfaces/__init__.py
@@ -4,10 +4,10 @@ from __future__ import absolute_import, division, print_function -import six - import abc +import six + from cryptography.hazmat.primitives.interfaces.ciphers import ( BlockCipherAlgorithm, CipherAlgorithm,