Skip to content

Commit 8990e9a

Browse files
committed
added base_url at the end
1 parent 5ada8ab commit 8990e9a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

descope/descope_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ class DescopeClient:
2727
def __init__(
2828
self,
2929
project_id: str,
30-
base_url: Optional[str] = None,
3130
public_key: Optional[dict] = None,
3231
skip_verify: bool = False,
3332
management_key: Optional[str] = None,
3433
timeout_seconds: float = DEFAULT_TIMEOUT_SECONDS,
3534
jwt_validation_leeway: int = 5,
3635
auth_management_key: Optional[str] = None,
3736
fga_cache_url: Optional[str] = None,
37+
*,
38+
base_url: Optional[str] = None,
3839
):
3940
# validate project id
4041
project_id = project_id or os.getenv("DESCOPE_PROJECT_ID", "")

0 commit comments

Comments
 (0)