Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion workos/user_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,12 @@ def __init__(
async def load_sealed_session(
self, *, sealed_session: str, cookie_password: str
) -> Session:
raise NotImplementedError("Async load_sealed_session not implemented")
return Session(
user_management=self,
client_id=self._http_client.client_id,
session_data=sealed_session,
cookie_password=cookie_password,
)

async def get_user(self, user_id: str) -> User:
response = await self._http_client.request(
Expand Down