Changed the type hint on money values. from int
to Union[int,float]
, Decimal
would have been preferred but for simplicity we're going with Union[int,float]
but care is important when making calculations.
Changed the type hint on money values. from int
to Union[int,float]
, Decimal
would have been preferred but for simplicity we're going with Union[int,float]
but care is important when making calculations.