Skip to content

Commit 98475a8

Browse files
authored
Merge branch 'master' into custom-scalar-types
2 parents a98b272 + 29f3fa7 commit 98475a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gql/transport/async_transport.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ async def connect(self):
1010
"""Coroutine used to create a connection to the specified address
1111
"""
1212
raise NotImplementedError(
13-
"Any AsyncTransport subclass must implement execute method"
13+
"Any AsyncTransport subclass must implement connect method"
1414
) # pragma: no cover
1515

1616
@abc.abstractmethod
1717
async def close(self):
1818
"""Coroutine used to Close an established connection
1919
"""
2020
raise NotImplementedError(
21-
"Any AsyncTransport subclass must implement execute method"
21+
"Any AsyncTransport subclass must implement close method"
2222
) # pragma: no cover
2323

2424
@abc.abstractmethod
@@ -48,5 +48,5 @@ def subscribe(
4848
The results are sent as an ExecutionResult object
4949
"""
5050
raise NotImplementedError(
51-
"Any AsyncTransport subclass must implement execute method"
51+
"Any AsyncTransport subclass must implement subscribe method"
5252
) # pragma: no cover

0 commit comments

Comments
 (0)