Skip to content

Commit

Permalink
lint: fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed Dec 3, 2024
1 parent ed4f60e commit 524f032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faststream/confluent/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(
}
)

self.producer = Producer(final_config, logger=self.logger)
self.producer = Producer(final_config, logger=self.logger) # type: ignore[call-arg]

self.__running = True
self._poll_task = asyncio.create_task(self._poll_loop())
Expand Down Expand Up @@ -312,7 +312,7 @@ def __init__(
)

self.config = final_config
self.consumer = Consumer(final_config, logger=self.logger)
self.consumer = Consumer(final_config, logger=self.logger) # type: ignore[call-arg]

@property
def topics_to_create(self) -> List[str]:
Expand Down

0 comments on commit 524f032

Please sign in to comment.