Sort imports with isort

This commit is contained in:
James R. Barlow
2018-12-30 01:28:15 -08:00
parent 06308a22ce
commit 0880b16491
38 changed files with 176 additions and 172 deletions
+7 -5
View File
@@ -15,15 +15,17 @@
# You should have received a copy of the GNU General Public License
# along with OCRmyPDF. If not, see <http://www.gnu.org/licenses/>.
from tempfile import NamedTemporaryFile
from subprocess import run, PIPE, STDOUT
from shutil import copy
from functools import lru_cache
import re
from functools import lru_cache
from os import fspath
from shutil import copy
from subprocess import PIPE, STDOUT, run
from tempfile import NamedTemporaryFile
from PIL import Image
from . import get_version
from ..exceptions import SubprocessOutputError
from os import fspath
@lru_cache(maxsize=1)