def unregister_callback(callback_handle): """Unregister a callback. For a richer interface, use the CallbackManager class. :param callback_handle: The handle of the callback to unregister :type callback_handle: int :return: None :rtype: None """ import c_api return c_api.unregister_callback(callback_handle)