Skip to content

Commit b52735d

Browse files
committed
fix indentation
1 parent 87575bd commit b52735d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

python/plugins/processing/core/Processing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,15 @@
6161

6262
from processing.tools import dataobjects
6363

64+
6465
class AlgListWatcher(QObject):
6566

6667
providerAdded = pyqtSignal(str)
6768
providerRemoved = pyqtSignal(str)
6869

6970
algListWatcher = AlgListWatcher()
7071

72+
7173
class Processing:
7274

7375
listeners = []

python/plugins/processing/core/ProcessingConfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
from processing.tools.system import defaultOutputFolder
3333
import processing.tools.dataobjects
3434

35+
3536
class SettingsWatcher(QObject):
3637

3738
settingsChanged = pyqtSignal()

python/plugins/processing/gui/ProcessingToolbox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,6 @@ def addProvider(self, providerName):
322322
break
323323
self.algorithmTree.insertTopLevelItem(i, providerItem)
324324

325-
326325
def fillTreeUsingProviders(self):
327326
self.algorithmTree.clear()
328327
self.disabledProviderItems = {}

0 commit comments

Comments
 (0)