Skip to content

Commit

Permalink
fix grammar in error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert authored Nov 25, 2024
1 parent c09644d commit 1d5a1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_minimqtt/adafruit_minimqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ def loop(self, timeout: float = 1.0) -> Optional[list[int]]:
if timeout < self._socket_timeout:
raise MMQTTException(
f"loop timeout ({timeout}) must be >= "
+ f"than socket timeout ({self._socket_timeout}))"
+ f"socket timeout ({self._socket_timeout}))"
)

self._connected()
Expand Down

0 comments on commit 1d5a1e3

Please sign in to comment.