mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Sort imports lexicographically
This commit is contained in:
parent
275d3e3da5
commit
52ae977fb7
1 changed files with 9 additions and 9 deletions
|
|
@ -6,20 +6,20 @@ but instead creates its own ephemeral TCP listener on the specified port
|
|||
in order to respond to incoming DVSNI challenges from the certificate
|
||||
authority."""
|
||||
|
||||
import zope.interface
|
||||
import zope.component
|
||||
from letsencrypt.client import CONFIG
|
||||
from letsencrypt.client import interfaces
|
||||
from letsencrypt.client.challenge_util import DvsniChall
|
||||
from letsencrypt.client.challenge_util import dvsni_gen_cert
|
||||
import os
|
||||
import sys
|
||||
import signal
|
||||
import time
|
||||
import socket
|
||||
from letsencrypt.client import CONFIG
|
||||
from letsencrypt.client import interfaces
|
||||
import Crypto.Random
|
||||
import OpenSSL.crypto
|
||||
import OpenSSL.SSL
|
||||
import os
|
||||
import signal
|
||||
import socket
|
||||
import sys
|
||||
import time
|
||||
import zope.component
|
||||
import zope.interface
|
||||
|
||||
|
||||
class StandaloneAuthenticator(object):
|
||||
|
|
|
|||
Loading…
Reference in a new issue