Skip to content

Commit 3d95712

Browse files
committed
[processing] add output extent to scripts (refs #11781)
1 parent e60ed05 commit 3d95712

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/plugins/processing/script/ScriptAlgorithm.py

+2
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,8 @@ def processOutputParameterToken(self, token):
293293
out = OutputNumber()
294294
elif token.lower().strip().startswith('string'):
295295
out = OutputString()
296+
elif token.lower().strip().startswith('extent'):
297+
out = OutputExtent()
296298

297299
return out
298300

0 commit comments

Comments
 (0)