Skip to content

Commit

Permalink
fix python 3.8 compat again?!
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonLydike committed Oct 9, 2023
1 parent 910203d commit 31769c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riscemu/core/float.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class BaseFloat(ABC):
_type: ClassVar[Type[Union[c_float, c_double]]]
_struct_fmt_str: ClassVar[str]

_val: c_float | c_double
_val: Union[c_float, c_double]

@property
def value(self) -> float:
Expand Down

0 comments on commit 31769c6

Please sign in to comment.