From 5652d2d1e063aada0123eb564d719b88016ea2e4 Mon Sep 17 00:00:00 2001 From: Dos Moonen Date: Sat, 20 Jan 2024 00:09:09 +0100 Subject: [PATCH] Take advantage of having dropped Python 3.7 --- aio_pika/queue.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aio_pika/queue.py b/aio_pika/queue.py index 5a351109..77c969e4 100644 --- a/aio_pika/queue.py +++ b/aio_pika/queue.py @@ -1,8 +1,9 @@ import asyncio from functools import partial from types import TracebackType -from typing import Any, Awaitable, Callable, Optional, Type, overload, Literal, \ - Set +from typing import ( + Any, Awaitable, Callable, Optional, Type, overload, Literal, Set +) import aiormq from aiormq.abc import DeliveredMessage