We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e55cc commit d8e7ba4Copy full SHA for d8e7ba4
pandas/core/internals/blocks.py
@@ -1955,7 +1955,7 @@ def formatting_values(self):
1955
# Do the warning here, it's only user in pandas, since we
1956
# have to check if the subclass overrode it.
1957
fv = getattr(type(self.values), '_formatting_values', None)
1958
- if fv is not ExtensionArray._formatting_values:
+ if fv and fv != ExtensionArray._formatting_values:
1959
msg = (
1960
"'ExtensionArray._formatting_values' is deprecated. "
1961
"Specify 'ExtensionArray._formatter' instead."
0 commit comments