Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed wrong import
  • Loading branch information
volaya committed Dec 7, 2016
1 parent bb7b6d4 commit a8dd95a
Showing 1 changed file with 4 additions and 3 deletions.
@@ -1,8 +1,9 @@
from processing.gui.wrappers import WidgetWrapper, DIALOG_STANDARD, DIALOG_BATCH
from processing.tools import dataobjects
from processing.gui.BatchInputSelectionPanel import BatchInputSelectionPanel
from qgis.PyQt.QtWidgets import QListWidget, QLineEdit, QPushButton
from qgis.PyQt.QtGui import QTextCursor, QLabel, QComboBox, QSizePolicy, QSpacerItem
from qgis.PyQt.QtWidgets import (QListWidget, QLineEdit, QPushButton, QLabel,
QComboBox, QSpacerItem)
from qgis.PyQt.QtGui import QTextCursor, QSizePolicy
from processing.core.outputs import OutputRaster
from processing.core.parameters import ParameterRaster
from processing.gui.wrappers import InvalidParameterValue
Expand All @@ -14,7 +15,7 @@
pluginPath = os.path.dirname(__file__)
WIDGET_DLG, BASE_DLG = uic.loadUiType(
os.path.join(pluginPath, 'PredefinedExpressionDialog.ui'))

class PredefinedExpressionDialog(BASE_DLG, WIDGET_DLG):

def __init__(self, expression, options):
Expand Down

0 comments on commit a8dd95a

Please sign in to comment.