Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
fix: Default api_url (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x authored Dec 6, 2023
1 parent 3451d22 commit 0e3a420
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion seamapi/seam.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ def __init__(
workspace_id = os.environ.get("SEAM_WORKSPACE_ID", None)
self.api_key = api_key
self.workspace_id = workspace_id
self.api_url = cast(str, api_url)
if api_url is not None:
self.api_url = cast(str, api_url)
self.should_report_exceptions = should_report_exceptions

if self.should_report_exceptions:
Expand Down

0 comments on commit 0e3a420

Please sign in to comment.