We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 297cfd5 commit 612d61dCopy full SHA for 612d61d
python/plugins/processing/tools/general.py
@@ -57,9 +57,9 @@ def algorithmHelp(id):
57
print('Input parameters')
58
print('----------------')
59
for p in alg.parameterDefinitions():
60
- print('\n{}: <{}>'.format(p.name(), p.__class__.__name__))
61
- if p.description():
62
- print('\t' + p.description())
+ print('\n{}: {}'.format(p.name(), p.description()))
+
+ print('\n\tParameter type:\t{}'.format(p.__class__.__name__))
63
64
if isinstance(p, QgsProcessingParameterEnum):
65
opts = []
0 commit comments