Skip to content

Commit d0c2a41

Browse files
committedNov 16, 2017
Fix error when running postgis algs
1 parent 135b5c6 commit d0c2a41

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎python/plugins/processing/gui/wrappers_postgis.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@
3030

3131
from processing.gui.wrappers import (
3232
WidgetWrapper,
33-
ExpressionWidgetWrapperMixin,
3433
DIALOG_MODELER,
3534
)
3635
from processing.tools.postgis import GeoDB
3736

3837

39-
class ConnectionWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
38+
class ConnectionWidgetWrapper(WidgetWrapper):
4039
"""
4140
WidgetWrapper for ParameterString that create and manage a combobox widget
4241
with existing postgis connections.
@@ -69,7 +68,7 @@ def value(self):
6968
return self.comboValue(combobox=self._combo)
7069

7170

72-
class SchemaWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
71+
class SchemaWidgetWrapper(WidgetWrapper):
7372
"""
7473
WidgetWrapper for ParameterString that create and manage a combobox widget
7574
with existing schemas from a parent connection parameter.
@@ -141,7 +140,7 @@ def database(self):
141140
return self._database
142141

143142

144-
class TableWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
143+
class TableWidgetWrapper(WidgetWrapper):
145144
"""
146145
WidgetWrapper for ParameterString that create and manage a combobox widget
147146
with existing tables from a parent schema parameter.

0 commit comments

Comments
 (0)
Please sign in to comment.