Do not describe raw data as a table by radarhere · Pull Request #8579 · python-pillow/Pillow
| bytes_value = size if size > 32 else repr(data) | |
| msg += f" - value: <table: {bytes_value} bytes>" |
If size is greater than 32, then this gives
tag: unknown (8192) - type: byte (1) Tag Location: 94 - Data Location: 0 - value: <table: 159 bytes>
If it is not, then this gives
tag: SamplesPerPixel (277) - type: long (4) - value: <table: b'\x92\x00\x12\x12' bytes>
I don't think we need to describe these bytes as a 'table'. It can be simplified to just
tag: SamplesPerPixel (277) - type: long (4) - value: b'\x92\x00\x12\x12'>