Skip to content

Commit

Permalink
refactor: Lint integrations-service (CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedantsahai18 authored and github-actions[bot] committed Jan 14, 2025
1 parent 5cab260 commit 2cdcb62
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,15 @@ async def get_connect_url(
# TODO: Get a better way to get the connect URL than this
try:
# Get session to access its connect_url
CONNECT_URL = f"wss://connect.browserbase.com?sessionId={arguments.id}&apiKey={setup.api_key}"
CONNECT_URL = (
f"wss://connect.browserbase.com?sessionId={arguments.id}&apiKey={setup.api_key}"
)
return BrowserbaseGetSessionConnectUrlOutput(url=CONNECT_URL)
except Exception as e:
print(f"Error getting connect URL: {e}")
raise


@beartype
@retry(
wait=wait_exponential(multiplier=1, min=4, max=10),
Expand Down

0 comments on commit 2cdcb62

Please sign in to comment.