File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ async def connect(self):
10
10
"""Coroutine used to create a connection to the specified address
11
11
"""
12
12
raise NotImplementedError (
13
- "Any AsyncTransport subclass must implement execute method"
13
+ "Any AsyncTransport subclass must implement connect method"
14
14
) # pragma: no cover
15
15
16
16
@abc .abstractmethod
17
17
async def close (self ):
18
18
"""Coroutine used to Close an established connection
19
19
"""
20
20
raise NotImplementedError (
21
- "Any AsyncTransport subclass must implement execute method"
21
+ "Any AsyncTransport subclass must implement close method"
22
22
) # pragma: no cover
23
23
24
24
@abc .abstractmethod
@@ -48,5 +48,5 @@ def subscribe(
48
48
The results are sent as an ExecutionResult object
49
49
"""
50
50
raise NotImplementedError (
51
- "Any AsyncTransport subclass must implement execute method"
51
+ "Any AsyncTransport subclass must implement subscribe method"
52
52
) # pragma: no cover
You can’t perform that action at this time.
0 commit comments