diff --git a/fatamorgana/basic.py b/fatamorgana/basic.py index 576883c..24aaf06 100644 --- a/fatamorgana/basic.py +++ b/fatamorgana/basic.py @@ -333,7 +333,7 @@ def read_float32(stream: io.BufferedIOBase) -> float: :return: The value read. """ b = _read(stream, 4) - return struct.unpack(" int: @@ -356,7 +356,7 @@ def read_float64(stream: io.BufferedIOBase) -> float: :return: The value read. """ b = _read(stream, 8) - return struct.unpack(" int: