From 06b334d29b2db0d59b7af3ab618551be247e7b73 Mon Sep 17 00:00:00 2001 From: Hemang Date: Thu, 30 Jan 2025 15:50:53 +0100 Subject: [PATCH] Remove api_url as an arg from push_trace. --- proxy/utils/explorer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/proxy/utils/explorer.py b/proxy/utils/explorer.py index 29c9f3b..fd275f1 100644 --- a/proxy/utils/explorer.py +++ b/proxy/utils/explorer.py @@ -13,7 +13,6 @@ def push_trace( messages: List[Dict[str, Any]], dataset_name: str, invariant_authorization: str, - api_url: str = DEFAULT_API_URL, ) -> Dict[str, str]: """Pushes traces to the dataset on the Invariant Explorer. @@ -21,7 +20,6 @@ def push_trace( messages (List[Dict[str, Any]]): List of messages to push. dataset_name (str): Name of the dataset. invariant_authorization (str): Authorization token. - api_url (str): URL of the Invariant Explorer API. Returns: Dict[str, str]: Response containing the trace ID.