summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/crypto/context_factory.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/crypto/context_factory.py b/synapse/crypto/context_factory.py
index 57694e18b0..569377e653 100644
--- a/synapse/crypto/context_factory.py
+++ b/synapse/crypto/context_factory.py
@@ -13,12 +13,13 @@
 # limitations under the License.
 import logging
 
+from zope.interface import implementer
+
 from OpenSSL import SSL, crypto
 from twisted.internet._idna import _idnaBytes
-from twisted.internet.ssl import ContextFactory, CertificateOptions
 from twisted.internet._sslverify import _defaultCurveName, _tolerateErrors
 from twisted.internet.interfaces import IOpenSSLClientConnectionCreator
-from zope.interface import implementer
+from twisted.internet.ssl import CertificateOptions, ContextFactory
 
 logger = logging.getLogger(__name__)