Skip to content

Commit d8e7ba4

Browse files
committed
py2 compat
1 parent 48e55cc commit d8e7ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/blocks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ def formatting_values(self):
19551955
# Do the warning here, it's only user in pandas, since we
19561956
# have to check if the subclass overrode it.
19571957
fv = getattr(type(self.values), '_formatting_values', None)
1958-
if fv is not ExtensionArray._formatting_values:
1958+
if fv and fv != ExtensionArray._formatting_values:
19591959
msg = (
19601960
"'ExtensionArray._formatting_values' is deprecated. "
19611961
"Specify 'ExtensionArray._formatter' instead."

0 commit comments

Comments
 (0)