Skip to content

Commit 70a1cc1

Browse files
committed
chore: Fix lint errors
1 parent a369e25 commit 70a1cc1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

roborock/devices/device.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ async def connect_loop() -> None:
127127
return
128128
except RoborockException as e:
129129
_LOGGER.info("Failed to connect to device %s: %s", self.name, e)
130-
_LOGGER.info("Retrying connection to device %s in %s seconds", self.name, backoff.total_seconds())
130+
_LOGGER.info(
131+
"Retrying connection to device %s in %s seconds", self.name, backoff.total_seconds()
132+
)
131133
await asyncio.sleep(backoff.total_seconds())
132134
backoff = min(backoff * BACKOFF_MULTIPLIER, MAX_BACKOFF_INTERVAL)
133135
except asyncio.CancelledError:

0 commit comments

Comments
 (0)