(self, headers)
| 741 | pass |
| 742 | |
| 743 | def is_text_response(self, headers): |
| 744 | # https://github.com/ccxt/ccxt/issues/5302 |
| 745 | content_type = headers.get('Content-Type', '') |
| 746 | return content_type.startswith('application/json') or content_type.startswith('text/') |
| 747 | |
| 748 | @staticmethod |
| 749 | def key_exists(dictionary, key): |