Skip to content

Commit 798ef1c

Browse files
Merge branch 'j0/add_docs' of github.com:supabase-community/gotrue-py into j0/add_docs
2 parents 33cefba + 7482f1a commit 798ef1c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gotrue/_async/api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,7 @@ def _create_request_headers(self, *, jwt: str) -> Dict[str, str]:
423423
The headers required for a successful request statement with the
424424
supabase backend.
425425
"""
426-
headers = {**self.headers}
427-
headers["Authorization"] = f"Bearer {jwt}"
426+
headers = {**self.headers, "Authorization": f"Bearer {jwt}"}
428427
return headers
429428

430429
async def sign_out(self, *, jwt: str) -> None:

0 commit comments

Comments
 (0)