diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:55:13 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:55:13 +0800 |
commit | 68855e0611e70486ef1ae93a0936babb3fc80704 (patch) | |
tree | a73bf49e3caea59f8291c290f48cf3caeb08143f /tests | |
parent | f886a82e34c902cde6bd4e05f3d8b84bfdc9945f (diff) | |
download | cryptography-68855e0611e70486ef1ae93a0936babb3fc80704.tar.gz cryptography-68855e0611e70486ef1ae93a0936babb3fc80704.tar.bz2 cryptography-68855e0611e70486ef1ae93a0936babb3fc80704.zip |
Style nitpick
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index f49507b4..155ec3a9 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -16,12 +16,12 @@ from __future__ import absolute_import, division, print_function import binascii import itertools -from cryptography.exceptions import UnsupportedInterface import os import pytest from cryptography import exceptions, utils +from cryptography.exceptions import UnsupportedInterface from cryptography.hazmat.primitives import hashes, interfaces from cryptography.hazmat.primitives.asymmetric import rsa from cryptography.hazmat.primitives.asymmetric import padding |