Skip to content

Commit edff777

Browse files
committed
Remove f-string for mpy-cross 5.0.0
1 parent 973da5e commit edff777

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_wiznet5k/adafruit_wiznet5k.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,9 @@ def socket_accept(self, socket_num):
612612
next_socknum = self.get_socket()
613613
if self._debug:
614614
print(
615-
f"* Dest is ({dest_ip}, {dest_port}), Next listen socknum is #{next_socknum}"
615+
"* Dest is ({}, {}), Next listen socknum is #{}".format(
616+
dest_ip, dest_port, next_socknum
617+
)
616618
)
617619
return next_socknum, (dest_ip, dest_port)
618620

0 commit comments

Comments
 (0)