fix example

This commit is contained in:
jerryneedell 2022-02-14 17:05:44 -05:00
parent 2b096008e7
commit 5a91ef47ad

View file

@ -71,7 +71,7 @@ ntag2xx_block = pn532.ntag2xx_read_block(6)
if ntag2xx_block is not None:
print(
"Wrote to block 6, now trying to read that data:",
[hex(x) for x in pn532.ntag2xx_read_block(6)],
[hex(x) for x in ntag2xx_block],
)
else:
print("Read failed - did you remove the card?")