Skip to content

Commit ef4732a

Browse files
committed
sparsify
1 parent 82616e9 commit ef4732a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pandas/core/indexes/multi.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ def format(
12371237
na_rep: Optional[str] = None,
12381238
names: bool = False,
12391239
space: int = 2,
1240-
sparsify: Optional[bool] = None,
1240+
sparsify = None,
12411241
adjoin: bool = True,
12421242
) -> list:
12431243
if name is not None:
@@ -1288,10 +1288,9 @@ def format(
12881288

12891289
if sparsify:
12901290
sentinel = ""
1291-
# GH3547
1292-
# use value of sparsify as sentinel, unless it's an obvious
1293-
# "Truthy" value
1294-
if sparsify not in [True, 1]:
1291+
# GH3547 use value of sparsify as sentinel if it's "Falsey"
1292+
assert isinstance(sparsify, bool) or sparsify is lib.no_default
1293+
if sparsify in [False, lib.no_default]:
12951294
sentinel = sparsify
12961295
# little bit of a kludge job for #1217
12971296
result_levels = _sparsify(

0 commit comments

Comments
 (0)