(self, commands: CommandStackT, response: Iterable[Any])
| 1964 | return response |
| 1965 | |
| 1966 | def raise_first_error(self, commands: CommandStackT, response: Iterable[Any]): |
| 1967 | for i, r in enumerate(response): |
| 1968 | if isinstance(r, ResponseError): |
| 1969 | self.annotate_exception(r, i + 1, commands[i][0]) |
| 1970 | raise r |
| 1971 | |
| 1972 | def annotate_exception( |
| 1973 | self, exception: Exception, number: int, command: Iterable[object] |
no test coverage detected