mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 14:31:56 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
13
django-stubs-generated/utils/numberformat.pyi
Normal file
13
django-stubs-generated/utils/numberformat.pyi
Normal file
@@ -0,0 +1,13 @@
|
||||
from decimal import Decimal
|
||||
from typing import Any, Optional, Tuple, Union
|
||||
|
||||
|
||||
def format(
|
||||
number: Union[Decimal, float, str],
|
||||
decimal_sep: str,
|
||||
decimal_pos: Optional[int] = ...,
|
||||
grouping: Union[Tuple[int, int, int], int] = ...,
|
||||
thousand_sep: str = ...,
|
||||
force_grouping: bool = ...,
|
||||
use_l10n: Optional[bool] = ...,
|
||||
) -> str: ...
|
||||
Reference in New Issue
Block a user