Skip to content

Commit 1d5a1e3

Browse files
authored
fix grammar in error msg
1 parent c09644d commit 1d5a1e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_minimqtt/adafruit_minimqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def loop(self, timeout: float = 1.0) -> Optional[list[int]]:
931931
if timeout < self._socket_timeout:
932932
raise MMQTTException(
933933
f"loop timeout ({timeout}) must be >= "
934-
+ f"than socket timeout ({self._socket_timeout}))"
934+
+ f"socket timeout ({self._socket_timeout}))"
935935
)
936936

937937
self._connected()

0 commit comments

Comments
 (0)