Skip to content

Commit ef97063

Browse files
committed
Identation
1 parent 6e1c5c4 commit ef97063

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

python/plugins/processing/ProcessingPlugin.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ def handleCustomUriDrop(self, uri):
103103
class ProcessingModelItem(QgsDataItem):
104104

105105
def __init__(self, parent, name, path):
106-
super(ProcessingModelItem, self).__init__(QgsDataItem.Custom,parent,name,path)
107-
self.setState(QgsDataItem.Populated ) #no children
106+
super(ProcessingModelItem, self).__init__(QgsDataItem.Custom, parent, name, path)
107+
self.setState(QgsDataItem.Populated) # no children
108108
self.setIconName(":/images/themes/default/processingModel.svg")
109-
self.setToolTip(QDir.toNativeSeparators(path) )
109+
self.setToolTip(QDir.toNativeSeparators(path))
110110

111111
def hasDragEnabled(self):
112112
return True
@@ -159,6 +159,7 @@ def createDataItem(self, path, parentItem):
159159
return ProcessingModelItem(parentItem, alg.name(), path)
160160
return None
161161

162+
162163
class ProcessingPlugin(object):
163164

164165
def __init__(self, iface):

0 commit comments

Comments
 (0)