mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
Separate stdlib imports from third-party
This commit is contained in:
parent
866d236249
commit
c951429895
3 changed files with 12 additions and 9 deletions
|
|
@ -9,9 +9,10 @@ configuration."""
|
|||
# TODO: when renewing or deploying, update config file to
|
||||
# memorialize the fact that it happened
|
||||
|
||||
import configobj
|
||||
import os
|
||||
|
||||
import configobj
|
||||
|
||||
from letsencrypt import configuration
|
||||
from letsencrypt import client
|
||||
from letsencrypt import crypto_util
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
"""The RenewableCert class, representing renewable lineages of
|
||||
certificates and storing the associated cert data and metadata."""
|
||||
|
||||
import configobj
|
||||
import copy
|
||||
import datetime
|
||||
import os
|
||||
import OpenSSL
|
||||
import parsedatetime
|
||||
import pyrfc3339
|
||||
import pytz
|
||||
import re
|
||||
import time
|
||||
|
||||
import configobj
|
||||
import OpenSSL
|
||||
import parsedatetime
|
||||
import pytz
|
||||
import pyrfc3339
|
||||
|
||||
from letsencrypt import le_util
|
||||
|
||||
DEFAULTS = configobj.ConfigObj("renewal.conf")
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
"""Tests for letsencrypt/renewer.py"""
|
||||
|
||||
import configobj
|
||||
import datetime
|
||||
import mock
|
||||
import os
|
||||
import tempfile
|
||||
import pkg_resources
|
||||
import pytz
|
||||
import shutil
|
||||
import unittest
|
||||
|
||||
import configobj
|
||||
import mock
|
||||
import pytz
|
||||
|
||||
from letsencrypt.storage import ALL_FOUR
|
||||
|
||||
def unlink_all(rc_object):
|
||||
|
|
|
|||
Loading…
Reference in a new issue