(self, exchange_id, symbol_argv, method_argv)
| 45 | self.ext = get_ext() |
| 46 | |
| 47 | async def init(self, exchange_id, symbol_argv, method_argv): |
| 48 | try: |
| 49 | await self.init_inner(exchange_id, symbol_argv, method_argv) |
| 50 | except Exception as e: |
| 51 | dump('[TEST_FAILURE]') # tell run-tests.js this is failure |
| 52 | raise e |
| 53 | return True |
| 54 | |
| 55 | async def init_inner(self, exchange_id, symbol_argv, method_argv): |
| 56 | self.parse_cli_args_and_props() |
nothing calls this directly
no test coverage detected