done
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
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: ...
|
Reference in New Issue
Block a user