11 lines
338 B
Python
11 lines
338 B
Python
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: ...
|