Fix import ordering s.t. future versions of pylint won't warn on it.

pylint gets more strict about import order in the future, so adjust it
now to make upgrading smoother. pylint is following the order from
PEP-8:

> Imports should be grouped in the following order:
>
> 1. standard library imports
> 2. related third party imports
> 3. local application/library specific imports
>
> You should put a blank line between each group of imports.
This commit is contained in:
Roy Wellington Ⅳ 2016-02-07 12:58:35 -08:00
parent fa926f9ada
commit 2369f1253b
3 changed files with 4 additions and 4 deletions

View file

@ -1,11 +1,11 @@
"""Plugin common functions."""
import os
import pkg_resources
import re
import shutil
import tempfile
import OpenSSL
import pkg_resources
import zope.interface
from acme.jose import util as jose_util

View file

@ -1,8 +1,8 @@
"""Tests for letsencrypt.plugins.disco."""
import pkg_resources
import unittest
import mock
import pkg_resources
import zope.interface
from letsencrypt import errors

View file

@ -1,13 +1,13 @@
"""Tests for letsencrypt.storage."""
import datetime
import pytz
import os
import tempfile
import shutil
import tempfile
import unittest
import configobj
import mock
import pytz
from letsencrypt import configuration
from letsencrypt import errors