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 cf08801 commit e543644Copy full SHA for e543644
pandas/core/indexes/base.py
@@ -5140,7 +5140,7 @@ def _is_memory_usage_qualified(self) -> bool:
5140
Return a boolean if we need a qualified .info display.
5141
"""
5142
return is_object_dtype(self.dtype) or (
5143
- is_string_dtype(self.dtype) and self.dtype.storage == "python"
+ is_string_dtype(self.dtype) and self.dtype.storage == "python" # type: ignore[union-attr]
5144
)
5145
5146
def __contains__(self, key: Any) -> bool:
0 commit comments