File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
python/plugins/processing Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 23
23
24
24
from processing .tools .dataobjects import * # NOQA
25
25
from processing .tools .general import * # NOQA
26
+ from processing .tools .general import (
27
+ algorithmHelp ,
28
+ run ,
29
+ runAndLoadResults ,
30
+ createAlgorithmDialog ,
31
+ execAlgorithmDialog ,
32
+ createContext
33
+ )
26
34
from processing .tools .vector import * # NOQA
27
35
from processing .tools .raster import * # NOQA
28
36
from processing .tools .system import * # NOQA
Original file line number Diff line number Diff line change 30
30
import tempfile
31
31
from qgis .core import (QgsProcessingParameterNumber ,
32
32
QgsApplication ,
33
+ QgsCoordinateReferenceSystem ,
33
34
QgsRasterLayer ,
34
35
QgsMapLayer ,
35
36
QgsProject ,
42
43
from processing .core .ProcessingConfig import ProcessingConfig , Setting
43
44
from processing .gui .AlgorithmDialog import AlgorithmDialog
44
45
from processing .gui .BatchAlgorithmDialog import BatchAlgorithmDialog
45
- from processing .gui .wrappers import * # noqa
46
+ from processing .gui .wrappers import WidgetWrapperFactory ,
46
47
from processing .modeler .ModelerParametersDialog import ModelerParametersDialog
47
48
from processing .algs .otb .OtbAlgorithm import OtbAlgorithm
48
49
from processing .algs .otb .OtbAlgorithmProvider import OtbAlgorithmProvider
You can’t perform that action at this time.
0 commit comments