| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
| 20 | class LookupRemote(Action): |
||
| 21 | """Get detailed information about an available pack from the StackStorm Exchange index""" |
||
| 22 | def run(self, pack): |
||
| 23 | """ |
||
| 24 | :param pack: Pack Name to get info about |
||
| 25 | :type pack: ``str`` |
||
| 26 | """ |
||
| 27 | return { |
||
| 28 | 'pack': get_pack_from_index(pack) |
||
| 29 | } |
||
| 30 |