(self, arguments)
| 755 | indentation = ' ' * 0 |
| 756 | |
| 757 | def parse_arguments(self, arguments): |
| 758 | out = [] |
| 759 | for arg in arguments: |
| 760 | if isinstance(arg, str) and arg[0] == "'" and arg[-1] == "'": |
| 761 | out.append('\'' + arg[1:-1] + '\'') |
| 762 | elif isinstance(arg, dict): |
| 763 | out.append(self.dict2string(arg)) |
| 764 | else: |
| 765 | out.append(arg) |
| 766 | return out |
| 767 | |
| 768 | def dict2string(self, d): |
| 769 | if d['type'] == 'comment': |
no test coverage detected