Skip to content

Commit 9f6e4e1

Browse files
authored
set use_json default true in RequestsHTTPTransport (#16)
1 parent e98ff27 commit 9f6e4e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gql/transport/requests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(
2525
headers=None, # type: Dict[str, Any]
2626
cookies=None, # type: Union[Dict[str, Any], RequestsCookieJar]
2727
auth=None, # type: AuthBase
28-
use_json=False, # type: bool
28+
use_json=True, # type: bool
2929
timeout=None, # type: int
3030
verify=True, # type: bool
3131
retries=0, # type: int

0 commit comments

Comments
 (0)