Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas-stubs/_config/config.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def reset_option(pat: str) -> None: ...
@overload
def describe_option(pat: str, _print_desc: Literal[False]) -> str: ...
@overload
def describe_option(pat: str, _print_desc: Literal[True] = ...) -> None: ...
def describe_option(pat: str, _print_desc: Literal[True] = True) -> None: ...

class DictWrapper:
def __init__(self, d: dict[str, Any], prefix: str = ...) -> None: ...
Expand Down
4 changes: 2 additions & 2 deletions pandas-stubs/_testing/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def assert_series_equal(
obj: str = ...,
*,
check_index: Literal[False],
check_like: Literal[False] = ...,
check_like: Literal[False] = False,
) -> None: ...
@overload
def assert_series_equal(
Expand All @@ -141,7 +141,7 @@ def assert_series_equal(
atol: float = ...,
obj: str = ...,
*,
check_index: Literal[True] = ...,
check_index: Literal[True] = True,
check_like: bool = ...,
) -> None: ...
def assert_frame_equal(
Expand Down
2 changes: 1 addition & 1 deletion pandas-stubs/core/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class IndexOpsMixin(OpsMixin, Generic[S1, GenericT_co]):
@overload
def value_counts(
self,
normalize: Literal[False] = ...,
normalize: Literal[False] = False,
sort: bool = ...,
ascending: bool = ...,
bins: int | None = ...,
Expand Down
Loading