Skip to content

Commit

Permalink
Merge branch 'main' into fix/fastapi-faststream-response
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik authored Sep 16, 2024
2 parents 06c7d11 + d44da75 commit a69741c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faststream/rabbit/publisher/usecase.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class RequestPublishKwargs(TypedDict, total=False):
]


class PublishKwargs(RequestPublishKwargs):
class PublishKwargs(RequestPublishKwargs, total=False):
"""Typed dict to annotate RabbitMQ publishers."""

reply_to: Annotated[
Expand Down Expand Up @@ -181,7 +181,7 @@ def __hash__(self) -> int:
)

@override
async def publish( # type: ignore[override]
async def publish(
self,
message: "AioPikaSendableMessage",
queue: Annotated[
Expand Down

0 comments on commit a69741c

Please sign in to comment.