From c3d44eeb6d171cee233be2ca101831a474e6eb85 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Wed, 11 Oct 2023 15:26:35 +0300 Subject: [PATCH] chore: rm redundant typehint --- docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py b/docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py index 2b98285c..c60f40fc 100644 --- a/docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py +++ b/docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py @@ -15,7 +15,7 @@ class FibonacciRpcClient: def __init__(self) -> None: self.futures: MutableMapping[str, asyncio.Future] = {} - self._loop: asyncio.AbstractEventLoop = asyncio.get_running_loop() + self._loop = asyncio.get_running_loop() async def connect(self) -> "FibonacciRpcClient": self.connection = await connect("amqp://guest:guest@localhost/")