summaryrefslogtreecommitdiff
path: root/src/OpenSSL/debug.py
diff options
context:
space:
mode:
authorwhiteowl3 <71030468+whiteowl3@users.noreply.github.com>2022-03-01 22:23:38 -0500
committerGitHub <noreply@github.com>2022-03-02 11:23:38 +0800
commit99911f75f110409742eaf710a178ff0201f9b4a9 (patch)
treebfd71c6a2927bc0d306fe349f0b1f63e97d4adee /src/OpenSSL/debug.py
parentbb40cf2985d1319afaab84bf545aa2bd95ba23a5 (diff)
downloadpyopenssl-99911f75f110409742eaf710a178ff0201f9b4a9.tar.gz
flake8-import-order (#1099)
* flake8-import-order * make sure bad import orders fail * flake8-import-order * add application name to flake8 section * correct import order for openssl as application
Diffstat (limited to 'src/OpenSSL/debug.py')
-rw-r--r--src/OpenSSL/debug.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/OpenSSL/debug.py b/src/OpenSSL/debug.py
index 988b92a..e39b128 100644
--- a/src/OpenSSL/debug.py
+++ b/src/OpenSSL/debug.py
@@ -3,10 +3,12 @@ from __future__ import print_function
import ssl
import sys
-import OpenSSL.SSL
import cffi
+
import cryptography
+import OpenSSL.SSL
+
from . import version