8000 Fix typo response_headers in httpx transport by cybniv · Pull Request #407 · graphql-python/gql · GitHub
[go: up one dir, main page]

Skip to content
8000

Fix typo response_headers in httpx transport #407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 25, 2023
Merged
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
Fix typo
  • Loading branch information
cybniv committed Apr 21, 2023
commit 8fe81af7302fbef3b6066fcb61fde479abcc4bc4
2 changes: 1 addition & 1 deletion gql/transport/httpx.py
4898
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
class _HTTPXTransport:
file_classes: Tuple[Type[Any], ...] = (io.IOBase,)

reponse_headers: Optional[httpx.Headers] = None
response_headers: Optional[httpx.Headers] = None

def __init__(
self,
Expand Down
0