Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -4789,7 +4789,7 @@ def _maybe_convert_for_string_atom(

# we cannot serialize this data, so report an exception on a column
# by column basis
for i in range(len(block.shape[0])):
for i in range(block.shape[0]):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you show what the block.shape is in the test suite now (pick a couple of example tests).


col = block.iget(i)
inferred_type = lib.infer_dtype(col, skipna=False)
Expand Down