File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
python/plugins/processing/gui Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 30
30
31
31
from processing .gui .wrappers import (
32
32
WidgetWrapper ,
33
- ExpressionWidgetWrapperMixin ,
34
33
DIALOG_MODELER ,
35
34
)
36
35
from processing .tools .postgis import GeoDB
37
36
38
37
39
- class ConnectionWidgetWrapper (WidgetWrapper , ExpressionWidgetWrapperMixin ):
38
+ class ConnectionWidgetWrapper (WidgetWrapper ):
40
39
"""
41
40
WidgetWrapper for ParameterString that create and manage a combobox widget
42
41
with existing postgis connections.
@@ -69,7 +68,7 @@ def value(self):
69
68
return self .comboValue (combobox = self ._combo )
70
69
71
70
72
- class SchemaWidgetWrapper (WidgetWrapper , ExpressionWidgetWrapperMixin ):
71
+ class SchemaWidgetWrapper (WidgetWrapper ):
73
72
"""
74
73
WidgetWrapper for ParameterString that create and manage a combobox widget
75
74
with existing schemas from a parent connection parameter.
@@ -141,7 +140,7 @@ def database(self):
141
140
return self ._database
142
141
143
142
144
- class TableWidgetWrapper (WidgetWrapper , ExpressionWidgetWrapperMixin ):
143
+ class TableWidgetWrapper (WidgetWrapper ):
145
144
"""
146
145
WidgetWrapper for ParameterString that create and manage a combobox widget
147
146
with existing tables from a parent schema parameter.
You can’t perform that action at this time.
0 commit comments