Skip to content

Commit

Permalink
proper bearer token format
Browse files Browse the repository at this point in the history
  • Loading branch information
tybug committed Oct 29, 2024
1 parent 9880b85 commit 4b9d34e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tooling/src/hypothesistooling/projects/hypothesispython.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def upload_distribution():
"https://api.github.com/repos/HypothesisWorks/hypothesis/releases",
headers={
"Accept": "application/vnd.github+json",
"Authorization": f"Bearer: {os.environ['GH_TOKEN']}",
"Authorization": f"Bearer {os.environ['GH_TOKEN']}",
"X-GitHub-Api-Version": "2022-11-28",
},
json={
Expand Down

0 comments on commit 4b9d34e

Please sign in to comment.