Skip to content

Commit a8dd95a

Browse files
committedDec 7, 2016
Fixed wrong import
1 parent bb7b6d4 commit a8dd95a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎python/plugins/processing/algs/qgis/ui/RasterCalculatorWidgets.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from processing.gui.wrappers import WidgetWrapper, DIALOG_STANDARD, DIALOG_BATCH
22
from processing.tools import dataobjects
33
from processing.gui.BatchInputSelectionPanel import BatchInputSelectionPanel
4-
from qgis.PyQt.QtWidgets import QListWidget, QLineEdit, QPushButton
5-
from qgis.PyQt.QtGui import QTextCursor, QLabel, QComboBox, QSizePolicy, QSpacerItem
4+
from qgis.PyQt.QtWidgets import (QListWidget, QLineEdit, QPushButton, QLabel,
5+
QComboBox, QSpacerItem)
6+
from qgis.PyQt.QtGui import QTextCursor, QSizePolicy
67
from processing.core.outputs import OutputRaster
78
from processing.core.parameters import ParameterRaster
89
from processing.gui.wrappers import InvalidParameterValue
@@ -14,7 +15,7 @@
1415
pluginPath = os.path.dirname(__file__)
1516
WIDGET_DLG, BASE_DLG = uic.loadUiType(
1617
os.path.join(pluginPath, 'PredefinedExpressionDialog.ui'))
17-
18+
1819
class PredefinedExpressionDialog(BASE_DLG, WIDGET_DLG):
1920

2021
def __init__(self, expression, options):

0 commit comments

Comments
 (0)
Please sign in to comment.