We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b7b3e commit 4272252Copy full SHA for 4272252
adafruit_minimqtt/adafruit_minimqtt.py
@@ -575,7 +575,9 @@ def ping(self) -> list[int]:
575
if rc:
576
rcs.append(rc)
577
if ticks_diff(ticks_ms(), stamp) / 1000 > ping_timeout:
578
- raise MMQTTException(f"PINGRESP not returned from broker within {ping_timeout} seconds.")
+ raise MMQTTException(
579
+ f"PINGRESP not returned from broker within {ping_timeout} seconds."
580
+ )
581
return rcs
582
583
# pylint: disable=too-many-branches, too-many-statements
0 commit comments