diff --git a/faststream_outbox/broker.py b/faststream_outbox/broker.py index 6acd5b2..64d7042 100644 --- a/faststream_outbox/broker.py +++ b/faststream_outbox/broker.py @@ -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. diff --git a/faststream_outbox/router.py b/faststream_outbox/router.py index bdfdc45..379d3f2 100644 --- a/faststream_outbox/router.py +++ b/faststream_outbox/router.py @@ -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, )