diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-09-04 08:21:51 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-09-04 08:21:51 -0400 |
commit | a0bcafad1fb9df611627a57142bdd02d6ecdfe40 (patch) | |
tree | 27343bc2f9b1b311781e9149b71b6eddc1588ea3 /OpenSSL | |
parent | da9f84f8431c1938ac7ce1326a27d31ee2820089 (diff) | |
download | pyopenssl-git-a0bcafad1fb9df611627a57142bdd02d6ecdfe40.tar.gz |
Removed an unused import and fixed formatting
Diffstat (limited to 'OpenSSL')
-rw-r--r-- | OpenSSL/test/util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSSL/test/util.py b/OpenSSL/test/util.py index 78b4a3f..4b044b7 100644 --- a/OpenSSL/test/util.py +++ b/OpenSSL/test/util.py @@ -7,7 +7,6 @@ Helpers for the OpenSSL test suite, largely copied from U{Twisted<http://twistedmatrix.com/>}. """ -import os import shutil import sys import traceback @@ -24,7 +23,8 @@ from OpenSSL.crypto import Error try: import memdbg except Exception: - class _memdbg(object): heap = None + class _memdbg(object): + heap = None memdbg = _memdbg() from OpenSSL._util import ffi, lib, byte_string as b |