Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
20 | class PackSearch(Action): |
||
21 | """"Search for packs in StackStorm Exchange and other directories.""" |
||
22 | def run(self, query): |
||
23 | """ |
||
24 | :param query: A word or a phrase to search for |
||
25 | :type query: ``str`` |
||
26 | """ |
||
27 | return search_pack_index(query) |
||
28 |