We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1411742 commit 7e6f8a9Copy full SHA for 7e6f8a9
pandas-stubs/_config/config.pyi
@@ -118,7 +118,7 @@ class IO(DictWrapper):
118
sql: IOSQL
119
120
class Mode(DictWrapper):
121
- chained_assignment: str
+ chained_assignment: Literal["warn", "raise"] | None
122
data_manager: str
123
sim_interactive: bool
124
string_storage: str
pandas-stubs/core/config_init.pyi
@@ -1,3 +1,5 @@
1
+from typing import Literal
2
+
3
use_bottleneck_doc: str = ...
4
5
def use_bottleneck_cb(key) -> None: ...
@@ -49,7 +51,7 @@ use_inf_as_na_doc: str = ...
49
51
50
52
def use_inf_as_na_cb(key) -> None: ...
53
-chained_assignment: str = ...
54
+chained_assignment: Literal["warn", "raise"] | None
55
reader_engine_doc: str = ...
56
writer_engine_doc: str = ...
57
parquet_engine_doc: str = ...
0 commit comments