From 2fae1ff59ce640b78267fac63d316690033abef4 Mon Sep 17 00:00:00 2001 From: Artur Shiriev Date: Tue, 15 Sep 2026 20:11:21 +0300 Subject: [PATCH] chore(lint): drop ty ignore comments made redundant by ty 0.0.81 --- faststream_outbox/broker.py | 2 +- faststream_outbox/router.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, )