Conditions | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | from lib.action import CiscoSparkAction |
||
10 | def run(self, accessor, method_name, **kwargs): |
||
11 | a = getattr(self.connection, accessor) |
||
12 | result = getattr(a, method_name)(**kwargs) |
||
13 | if method_name == 'list': |
||
14 | result = list(result) # iterate generator |
||
15 | if isinstance(result, list): |
||
16 | return [x._json for x in result] |
||
17 | else: |
||
18 | return result._json |
||
19 |