Files
dash-api/lib/python3.11/site-packages/pandas-stubs/io/formats/format.pyi

11 lines
338 B
Python
Raw Normal View History

2025-09-07 22:09:54 +02:00
class EngFormatter:
ENG_PREFIXES = ...
accuracy = ...
use_eng_prefix = ...
def __init__(
self, accuracy: int | None = ..., use_eng_prefix: bool = ...
) -> None: ...
def __call__(self, num: float) -> str: ...
def set_eng_float_format(accuracy: int = 3, use_eng_prefix: bool = False) -> None: ...