Skip to content

Commit

Permalink
processing_search.py: list only buffer tools
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Oct 26, 2023
1 parent 62caee9 commit c86317c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _static/scripts/processing_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

for alg in QgsApplication.processingRegistry().algorithms():
name = alg.displayName()
print(alg.id(), "->", name)
if 'buffer' in name:
print(alg.id(), "->", name)

0 comments on commit c86317c

Please sign in to comment.