Skip to content

Commit

Permalink
Fix error when running postgis algs
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 16, 2017
1 parent 135b5c6 commit d0c2a41
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions python/plugins/processing/gui/wrappers_postgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@

from processing.gui.wrappers import (
WidgetWrapper,
ExpressionWidgetWrapperMixin,
DIALOG_MODELER,
)
from processing.tools.postgis import GeoDB


class ConnectionWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
class ConnectionWidgetWrapper(WidgetWrapper):
"""
WidgetWrapper for ParameterString that create and manage a combobox widget
with existing postgis connections.
Expand Down Expand Up @@ -69,7 +68,7 @@ def value(self):
return self.comboValue(combobox=self._combo)


class SchemaWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
class SchemaWidgetWrapper(WidgetWrapper):
"""
WidgetWrapper for ParameterString that create and manage a combobox widget
with existing schemas from a parent connection parameter.
Expand Down Expand Up @@ -141,7 +140,7 @@ def database(self):
return self._database


class TableWidgetWrapper(WidgetWrapper, ExpressionWidgetWrapperMixin):
class TableWidgetWrapper(WidgetWrapper):
"""
WidgetWrapper for ParameterString that create and manage a combobox widget
with existing tables from a parent schema parameter.
Expand Down

0 comments on commit d0c2a41

Please sign in to comment.