Add float type hint to ack_delay member variable

This commit is contained in:
Nate Gay 2025-05-15 19:26:05 -04:00 committed by GitHub
parent 8f0b80e279
commit 9c0b06195a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -178,7 +178,7 @@ class RFMSPI:
"""
self.ack_retries = 5
"""The number of ACK retries before reporting a failure."""
self.ack_delay = None
self.ack_delay: float = None
"""The delay time before attemting to send an ACK.
If ACKs are being missed try setting this to .1 or .2.
"""