Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Jun 8, 2024
1 parent c39b77b commit be514bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuitpython_nrf24l01/fake_ble.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def _make_payload(self, payload: Union[bytes, bytearray]) -> bytes:
"""Assemble the entire packet to be transmitted as a payload."""
if self.len_available(payload) < 0:
raise ValueError(
"Payload length exceeds maximum buffer size by " "{} bytes".format(
"Payload length exceeds maximum buffer size by {} bytes".format(
abs(self.len_available(payload))
)
)
Expand Down

0 comments on commit be514bc

Please sign in to comment.