| from pandasai.responses.response_parser import IResponseParser | |
| class NoParser(IResponseParser): | |
| _context = '' | |
| def __init__(self, context) -> None: | |
| self._context = context | |
| def parse(self, result: dict) -> dict: | |
| return result | |
| from pandasai.responses.response_parser import IResponseParser | |
| class NoParser(IResponseParser): | |
| _context = '' | |
| def __init__(self, context) -> None: | |
| self._context = context | |
| def parse(self, result: dict) -> dict: | |
| return result | |