Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-11-05 13:31:03 +07:00
parent 1d6a3f8663
commit c6a9780968

View File

@@ -7,3 +7,4 @@ def float_repr(value: float, precision_digits: int) -> str: ...
_float_repr = float_repr
def float_split_str(value: float, precision_digits: int) -> tuple[str, str]: ...
def float_split(value: float, precision_digits: int) -> tuple[int, int]: ...
def json_float_round(value: float, precision_digits: int, rounding_method: str = ...) -> float: ...