Skip to content

Commit 5b2824f

Browse files
committedMay 21, 2014
indentation update
1 parent 470431d commit 5b2824f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+254
-245
lines changed
 

‎python/core/contextmanagers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
@contextmanager
77
def qgisapp(args=None, guienabled=True, configpath=None, sysexit=True):
88
"""
9-
Create a new QGIS Qt application.
10-
9+
Create a new QGIS Qt application.
10+
1111
You should use this before creating any Qt widgets or QGIS objects for
1212
your custom QGIS based application.
13-
13+
1414
usage:
1515
from qgis.core.contextmanagers import qgisapp
1616

‎python/custom_widgets/qgis_customwidgets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@
2929
# pluginType = CW_FILTER
3030
# def getFilter():
3131
# import qgis.gui
32-
#
32+
#
3333
# QGIS_widgets = {}
3434
# for pyClass in dir(qgis.gui):
3535
# QGIS_widgets[pyClass] = 'qgis.gui'
36-
#
36+
#
3737
# def _QGISfilter(widgetname, baseclassname, module):
3838
# print widgetname, baseclassname, module
3939
# if widgetname in QGIS_widgets:
4040
# return (MATCH, (widgetname, baseclassname, QGIS_widgets[widgetname]))
4141
# else:
4242
# return (NO_MATCH, None)
43-
#
43+
#
4444
# return _QGISfilter
4545

4646

0 commit comments

Comments
 (0)
Please sign in to comment.