Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus authored and frederikaalund committed Jul 18, 2023
1 parent 82504f2 commit 132c9f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiomqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 132c9f9

Please sign in to comment.