Future[Line], not Awaitable[Line] in self._wait_for
This commit is contained in:
parent
cb3439e674
commit
bd424d11ff
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class Server(IServer):
|
|||
self.sasl_state = SASLResult.NONE
|
||||
|
||||
|
||||
self._wait_for: List[Tuple[Awaitable[Line], IMatchResponse]] = []
|
||||
self._wait_for: List[Tuple["Future[Line]", IMatchResponse]] = []
|
||||
self._write_queue: PriorityQueue[SentLine] = PriorityQueue()
|
||||
self.desired_caps: Set[ICapability] = set([])
|
||||
|
||||
|
|
Loading…
Reference in a new issue