This commit is contained in:
Ishaan Jaffer
2025-09-23 14:07:54 -07:00
parent d91e533d8e
commit 29a82c9773
+1 -1
View File
@@ -286,7 +286,7 @@ def update_key_with_team(base_url: str, api_key: str, team_id: str) -> bool:
client = Client(base_url=base_url, api_key=api_key)
try:
result = client.keys.update(key=api_key, team_id=team_id)
client.keys.update(key=api_key, team_id=team_id)
click.echo(f"✅ Successfully assigned key to team: {team_id}")
return True
except requests.exceptions.HTTPError as e: