mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
Fix indentation
This commit is contained in:
parent
179a92cd65
commit
fbc5e0fc8e
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -435,6 +435,7 @@ class ParameterTableFieldTest(unittest.TestCase):
|
||||
|
||||
|
||||
class ParameterTableMultipleFieldTest(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
self.parent_name = 'test_parent_layer'
|
||||
test_data = points2()
|
||||
|
Loading…
x
Reference in New Issue
Block a user