Skip to content

Commit 04a0ff6

Browse files
committed
fix(util): fix typo
1 parent b4764d3 commit 04a0ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshtastic/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def waitForAckNak(
225225

226226
def waitForTraceRoute(self, waitFactor, acknowledgment, attr="receivedTraceRoute") -> bool:
227227
"""Block until traceroute response is received. Returns True if traceroute response has been received."""
228-
self.reset(self.expireTimout * waitFactor)
228+
self.reset(self.expireTimeout * waitFactor)
229229
while time.time() < self.expireTime:
230230
if getattr(acknowledgment, attr, None):
231231
acknowledgment.reset()

0 commit comments

Comments
 (0)