whitespace

This commit is contained in:
Jan Petykiewicz 2024-07-28 23:15:23 -07:00
parent 59c94f7c17
commit 438cde513e

View File

@ -51,7 +51,7 @@ def read_properties(stream: IO[bytes]) -> dict[int, bytes]:
value = PROPVALUE.read(stream) value = PROPVALUE.read(stream)
if key in properties: if key in properties:
raise KlamathError(f'Duplicate property key: {key!r}') raise KlamathError(f'Duplicate property key: {key!r}')
properties[key] = value properties[key] = value
size, tag = Record.read_header(stream) size, tag = Record.read_header(stream)
return properties return properties