diff --git a/galaxy/api/jsonrpc.py b/galaxy/api/jsonrpc.py index db45f55..c46b26f 100644 --- a/galaxy/api/jsonrpc.py +++ b/galaxy/api/jsonrpc.py @@ -180,8 +180,6 @@ class Server(): try: result = await callback(*bound_args.args, **bound_args.kwargs) self._send_response(request.id, result) - except TypeError: - self._send_error(request.id, InvalidParams()) except NotImplementedError: self._send_error(request.id, MethodNotFound()) except JsonRpcError as error: