Skip to content

Commit 88e5a4e

Browse files
committed
outdent
1 parent 1551731 commit 88e5a4e

File tree

1 file changed

+1
-2
lines changed
  • src/nested_pandas/nestedframe

1 file changed

+1
-2
lines changed

src/nested_pandas/nestedframe/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,7 @@ def repack_row(chunk):
308308
# If the chunk is None, just return None
309309
if chunk is None:
310310
return None
311-
else:
312-
return chunk.to_html(max_rows=1, max_cols=5, show_dimensions=True, index=False, header=False)
311+
return chunk.to_html(max_rows=1, max_cols=5, show_dimensions=True, index=False, header=False)
313312

314313
# Apply repacking to all nested columns
315314
repr = self.style.format(

0 commit comments

Comments
 (0)