Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Mar 28, 2023
1 parent fccdefd commit cc5d031
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aio_pika/robust_channel.py
Expand Up @@ -84,7 +84,7 @@ async def restore(self, channel: Any = None) -> None:
if channel is not None:
warnings.warn(
"Channel argument will be ignored because you "
"no need to pass this anymore.",
"don't need to pass this anymore.",
DeprecationWarning,
)

Expand Down
2 changes: 1 addition & 1 deletion aio_pika/robust_exchange.py
Expand Up @@ -51,7 +51,7 @@ async def restore(self, channel: Any = None) -> None:
if channel is not None:
warnings.warn(
"Channel argument will be ignored because you "
"no need to pass this anymore.",
"don't need to pass this anymore.",
DeprecationWarning,
)
async with self.__restore_lock:
Expand Down
2 changes: 1 addition & 1 deletion aio_pika/robust_queue.py
Expand Up @@ -59,7 +59,7 @@ async def restore(self, channel: Any = None) -> None:
if channel is not None:
warnings.warn(
"Channel argument will be ignored because you "
"no need to pass this anymore.",
"don't need to pass this anymore.",
DeprecationWarning,
)

Expand Down

0 comments on commit cc5d031

Please sign in to comment.