summaryrefslogtreecommitdiff
path: root/src/OpenSSL/__init__.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/__init__.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/__init__.py')
-rw-r--r--src/OpenSSL/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OpenSSL/__init__.py b/src/OpenSSL/__init__.py
index 11e896a..0af3acd 100644
--- a/src/OpenSSL/__init__.py
+++ b/src/OpenSSL/__init__.py
@@ -5,7 +5,7 @@
pyOpenSSL - A simple wrapper around the OpenSSL library
"""
-from OpenSSL import crypto, SSL
+from OpenSSL import SSL, crypto
from OpenSSL.version import (
__author__,
__copyright__,