Skip to content

Commit e9b20ae

Browse files
committed
Removed unnecessary f-string
1 parent 9919955 commit e9b20ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • FeatherCAN_CircuitPython/sender-ack

FeatherCAN_CircuitPython/sender-ack/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
ack_count = struct.unpack("<I", data)[0]
5151
if ack_count == count:
52-
print(f"Received ACK")
52+
print("Received ACK")
5353
break
5454
print(f"Received incorrect ACK: {ack_count} should be {count}")
5555

0 commit comments

Comments
 (0)