Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed May 5, 2020
1 parent 52ef2a4 commit 9602e0f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions python/plugins/processing/__init__.py
Expand Up @@ -23,6 +23,14 @@

from processing.tools.dataobjects import * # NOQA
from processing.tools.general import * # NOQA
from processing.tools.general import (
algorithmHelp,
run,
runAndLoadResults,
createAlgorithmDialog,
execAlgorithmDialog,
createContext
)
from processing.tools.vector import * # NOQA
from processing.tools.raster import * # NOQA
from processing.tools.system import * # NOQA
Expand Down
3 changes: 2 additions & 1 deletion python/plugins/processing/tests/OtbAlgorithmsTest.py
Expand Up @@ -30,6 +30,7 @@
import tempfile
from qgis.core import (QgsProcessingParameterNumber,
QgsApplication,
QgsCoordinateReferenceSystem,
QgsRasterLayer,
QgsMapLayer,
QgsProject,
Expand All @@ -42,7 +43,7 @@
from processing.core.ProcessingConfig import ProcessingConfig, Setting
from processing.gui.AlgorithmDialog import AlgorithmDialog
from processing.gui.BatchAlgorithmDialog import BatchAlgorithmDialog
from processing.gui.wrappers import * # noqa
from processing.gui.wrappers import WidgetWrapperFactory,
from processing.modeler.ModelerParametersDialog import ModelerParametersDialog
from processing.algs.otb.OtbAlgorithm import OtbAlgorithm
from processing.algs.otb.OtbAlgorithmProvider import OtbAlgorithmProvider
Expand Down

0 comments on commit 9602e0f

Please sign in to comment.