From 132c9f97af8b82297fc20ea0a10b6099dcd689c1 Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Sat, 15 Jul 2023 10:37:24 +0200 Subject: [PATCH] fix formatting --- aiomqtt/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiomqtt/client.py b/aiomqtt/client.py index 4eac715..46b0a02 100644 --- a/aiomqtt/client.py +++ b/aiomqtt/client.py @@ -511,8 +511,8 @@ async def connect(self, *, timeout: float | None = None) -> None: if self._disconnected.done(): self._disconnected = asyncio.Future() - def _early_out_on_disconnected(self)-> bool: - # Early out if already disconnected... + def _early_out_on_disconnected(self) -> bool: + # Early out if already disconnected... if self._disconnected.done(): disc_exc = self._disconnected.exception() if disc_exc is not None: