[WIP] proper hex formatting

This commit is contained in:
jpk 2023-05-21 18:47:41 +02:00
parent a20c35aefd
commit 96647df9c0
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Monitor(Dispatcher):
try:
row_index = uuid_cells.index(service.uuid)
table.columns[2]._cells[row_index] = f"{len(received_data)}"
table.columns[3]._cells[row_index] = f"{hexlify(received_data)}"
table.columns[3]._cells[row_index] = f"{received_data.hex(' ')}"
except ValueError:
pass