Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: No body for head
  • Loading branch information
juancarlospaco committed Jan 24, 2025
commit ba28ff18e6935fddc66975f61ff08510a0596b16
2 changes: 1 addition & 1 deletion postgrest/_sync/request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(
self.http_method = http_method
self.headers = headers
self.params = params
self.json = None if http_method == "GET" else json
self.json = None if http_method in {"GET", "HEAD"} else json

def execute(self) -> APIResponse[_ReturnT]:
"""Execute the query.
Expand Down
Loading