(self, arguments)
| 695 | indentation = ' ' * 0 |
| 696 | |
| 697 | def parse_arguments(self, arguments): |
| 698 | out = [] |
| 699 | for arg in arguments: |
| 700 | if isinstance(arg, str) and arg[0] == "'" and arg[-1] == "'": |
| 701 | out.append('\'' + arg[1:-1] + '\'') |
| 702 | elif isinstance(arg, dict): |
| 703 | out.append(self.dict2string(arg)) |
| 704 | else: |
| 705 | out.append(arg) |
| 706 | return out |
| 707 | |
| 708 | def dict2string(self, d): |
| 709 | if d['type'] == 'comment': |
no test coverage detected