We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce1ac2 commit 74ec882Copy full SHA for 74ec882
agentops/client/api/versions/v3.py
@@ -29,7 +29,7 @@ def __init__(self, endpoint: str):
29
def fetch_auth_token(self, api_key: str) -> AuthTokenResponse:
30
path = "/v3/auth/token"
31
data = {"api_key": api_key}
32
- headers = self.prepare_headers({"X-API-Key": api_key})
+ headers = self.prepare_headers()
33
34
r = self.post(path, data, headers)
35
0 commit comments