Fix indentation

This commit is contained in:
Nyall Dawson 2016-06-07 11:11:59 +10:00
parent 179a92cd65
commit fbc5e0fc8e
5 changed files with 8 additions and 5 deletions

View File

@ -228,7 +228,6 @@ class ParameterExtent(Parameter):
return '##' + self.name + '=' + param_type
class ParameterPoint(Parameter):
def __init__(self, name='', description='', default=None, optional=False):
@ -846,6 +845,7 @@ class ParameterTable(ParameterDataObject):
class ParameterTableField(Parameter):
"""A parameter representing a table field.
Its value is a string that represents the name of the field.
@ -899,6 +899,7 @@ class ParameterTableField(Parameter):
class ParameterTableMultipleField(Parameter):
"""A parameter representing several table fields.
Its value is a string with items separated by semicolons, each of
which represents the name of each field.

View File

@ -27,6 +27,7 @@ from qgis.PyQt.QtCore import pyqtSignal
class ListMultiSelectWidget(QGroupBox):
"""Widget to show two parallel lists and move elements between the two
usage from code:

View File

@ -435,6 +435,7 @@ class ParameterTableFieldTest(unittest.TestCase):
class ParameterTableMultipleFieldTest(unittest.TestCase):
def setUp(self):
self.parent_name = 'test_parent_layer'
test_data = points2()