Skip to content

Commit d9df6bf

Browse files
committed
correct boxing
1 parent d84cc02 commit d9df6bf

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/io/formats/format.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1123,12 +1123,9 @@ class ExtensionArrayFormatter(GenericArrayFormatter):
11231123
def _format_strings(self):
11241124
values = self.values
11251125
if isinstance(values, (ABCIndexClass, ABCSeries)):
1126-
boxed = True
11271126
values = values._values
1128-
else:
1129-
boxed = False
11301127

1131-
formatter = values._formatter(boxed=boxed)
1128+
formatter = values._formatter(boxed=True)
11321129

11331130
if is_categorical_dtype(values.dtype):
11341131
# Categorical is special for now, so that we can preserve tzinfo

0 commit comments

Comments
 (0)