commit | a0bcafad1fb9df611627a57142bdd02d6ecdfe40 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Fri Sep 04 08:21:51 2015 -0400 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Fri Sep 04 08:21:51 2015 -0400 |
tree | 27343bc2f9b1b311781e9149b71b6eddc1588ea3 | |
parent | da9f84f8431c1938ac7ce1326a27d31ee2820089 [diff] [blame] |
Removed an unused import and fixed formatting
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 @@ U{Twisted<http://twistedmatrix.com/>}. """ -import os import shutil import sys import traceback @@ -24,7 +23,8 @@ 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