Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Add `Bearer` on documentation as typically it's use with the `Authorization` header
  • Loading branch information
acrogenesis authored Oct 30, 2024
1 parent 675dae0 commit eaab434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ gql.addEnvironment(
'dev',
url=os.environ.get('API'), # should be an https url
wss=os.environ.get('WSS'), # should be an ws/wss url
headers={'Authorization': os.environ.get('TOKEN')},
headers={'Authorization': f"Bearer {os.environ.get('TOKEN')}"},
default=True)
```

Expand Down

0 comments on commit eaab434

Please sign in to comment.