Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Nov 1, 2024
1 parent 5ed6189 commit 293a476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aiohomekit/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def __init__(
self._tasks = AsyncExitStack()

async def _async_register_backend(self, controller: AbstractController) -> None:
self.transports[
controller.transport_type
] = await self._tasks.enter_async_context(controller)
self.transports[controller.transport_type] = (
await self._tasks.enter_async_context(controller)
)

async def async_start(self) -> None:
if IP_TRANSPORT_SUPPORTED or self._async_zeroconf_instance:
Expand Down

0 comments on commit 293a476

Please sign in to comment.