Skip to content

Commit 11a7ce1

Browse files
committed
Version 0.11
1 parent f193095 commit 11a7ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ieee754/IEEE754.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def __str__(self) -> str:
197197
return self.__edge_case
198198
return f"{self.sign} {self.exponent} {self.mantissa}"
199199

200-
def hex(self) -> (str, list[str]):
200+
def hex(self) -> tuple:
201201
h = ""
202202
hex_parts = []
203203
s = str(self).replace(" ", "")

0 commit comments

Comments
 (0)