Rename `float_digits()` -> `dec_digits()`, since decimal.
parent
76cd5519b3
commit
ea9ea4a6d7
|
@ -69,8 +69,9 @@ AssetTypeName: Literal[
|
|||
# egs. stock, futer, option, bond etc.
|
||||
|
||||
|
||||
def float_digits(
|
||||
value: float,
|
||||
def dec_digits(
|
||||
value: float | str | Decimal,
|
||||
|
||||
) -> int:
|
||||
'''
|
||||
Return the number of precision digits read from a decimal or float
|
||||
|
@ -85,6 +86,9 @@ def float_digits(
|
|||
)
|
||||
|
||||
|
||||
float_digits = dec_digits
|
||||
|
||||
|
||||
def digits_to_dec(
|
||||
ndigits: int,
|
||||
) -> Decimal:
|
||||
|
|
Loading…
Reference in New Issue