Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-11-05 13:31:50 +07:00
parent 486ec29b70
commit a1236ecd1c

View File

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