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 0e9e7bc commit d4dbffaCopy full SHA for d4dbffa
pandas/core/methods/to_dict.py
@@ -155,6 +155,7 @@ def to_dict(
155
stacklevel=find_stack_level(),
156
)
157
# GH16122
158
+ # error: Call to untyped function "standardize_mapping" in typed context
159
into_c = com.standardize_mapping(into) # type: ignore[no-untyped-call]
160
161
# error: Incompatible types in assignment (expression has type "str",
pandas/io/formats/printing.py
@@ -255,6 +255,7 @@ def enable_data_resource_formatter(enable: bool) -> None:
255
return
256
from IPython import get_ipython
257
258
259
ip = get_ipython() # type: ignore[no-untyped-call]
260
if ip is None:
261
# still not in IPython
0 commit comments