Move ocrmypdf.exec.run and friends to ocrmypdf.subprocess

This commit is contained in:
James R. Barlow
2020-06-09 14:53:10 -07:00
parent 3b6f6782f0
commit be8ca589d4
17 changed files with 23 additions and 27 deletions
+2 -1
View File
@@ -21,8 +21,9 @@ from pathlib import Path
from ocrmypdf import hookimpl
from ocrmypdf._validation import HOCR_OK_LANGS
from ocrmypdf.exceptions import MissingDependencyError
from ocrmypdf.exec import check_external_program, ghostscript
from ocrmypdf.exec import ghostscript
from ocrmypdf.helpers import Resolution
from ocrmypdf.subprocess import check_external_program
log = logging.getLogger(__name__)