Merge pull request #13 from nateinaction/patch-1

Add float type hint to ack_delay member variable
This commit is contained in:
foamyguy 2025-05-15 19:46:08 -05:00 committed by GitHub
commit 91b9767ff5
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.
"""