Skip to content

Commit a78ece9

Browse files
committed
Fix lint with 'make check'
1 parent d7329c4 commit a78ece9

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/code_examples/fastapi_async.py

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
from fastapi import FastAPI, HTTPException
1212
from fastapi.responses import HTMLResponse
13+
1314
from gql import Client, gql
1415
from gql.transport.aiohttp import AIOHTTPTransport
1516

gql/transport/appsync_auth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class AppSyncIAMAuthentication(AppSyncAuthentication):
9191
9292
.. note::
9393
There is no need for you to use this class directly, you could instead
94-
intantiate the :class:`gql.transport.appsync_websockets.AppSyncWebsocketsTransport`
94+
intantiate :class:`gql.transport.appsync_websockets.AppSyncWebsocketsTransport`
9595
without an auth argument.
9696
9797
During initialization, this class will use botocore to attempt to

gql/transport/requests.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ def __init__(
5454
"""Initialize the transport with the given request parameters.
5555
5656
:param url: The GraphQL server URL.
57-
:param headers: Dictionary of HTTP Headers to send with :meth:`requests.Session.request`
58-
(Default: None).
59-
:param cookies: Dict or CookieJar object to send with :meth:`requests.Session.request`
60-
(Default: None).
57+
:param headers: Dictionary of HTTP Headers to send with
58+
:meth:`requests.Session.request` (Default: None).
59+
:param cookies: Dict or CookieJar object to send with
60+
:meth:`requests.Session.request` (Default: None).
6161
:param auth: Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth
6262
(Default: None).
6363
:param use_json: Send request body as JSON instead of form-urlencoded

0 commit comments

Comments
 (0)