Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion faststream_outbox/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def __init__( # noqa: PLR0913
tags=tags,
security=None,
)
super().__init__(config=broker_config, specification=specification, routers=routers) # ty: ignore[unknown-argument]
super().__init__(config=broker_config, specification=specification, routers=routers)
# Track which foreign-broker config ids we've already warned about so
# repeated start() calls (e.g. the test harness calls start() twice) each
# only emit the warning once.
Expand Down
2 changes: 1 addition & 1 deletion faststream_outbox/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ def __init__(
broker_decoder=decoder,
include_in_schema=include_in_schema,
),
handlers=handlers, # ty: ignore[unknown-argument]
handlers=handlers,
routers=routers,
)
Loading