Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions postgrest/_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def create_session(
base_url=base_url,
headers=headers,
timeout=timeout,
follow_redirects=True,
)

async def __aenter__(self) -> AsyncPostgrestClient:
Expand Down
1 change: 1 addition & 0 deletions postgrest/_sync/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def create_session(
base_url=base_url,
headers=headers,
timeout=timeout,
follow_redirects=True,
)

def __enter__(self) -> SyncPostgrestClient:
Expand Down