Skip to content

Commit

Permalink
chore: rm redundant typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
Olegt0rr committed Oct 11, 2023
1 parent c8de5e5 commit c3d44ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/rabbitmq-tutorial/examples/6-rpc/rpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/")
Expand Down

0 comments on commit c3d44ee

Please sign in to comment.