We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9f12d commit 7f5052eCopy full SHA for 7f5052e
pandas/core/internals/blocks.py
@@ -833,7 +833,7 @@ def _replace_list(
833
834
rb = [self if inplace else self.copy()]
835
for i, (src, dest) in enumerate(pairs):
836
- new_rb: List[Block] = []
+ new_rb: List["Block"] = []
837
for blk in rb:
838
m = masks[i]
839
convert = i == src_len # only convert once at the end
pandas/io/pytables.py
@@ -4058,7 +4058,7 @@ def get_blk_items(mgr):
4058
tuple(b_items.tolist()): (b, b_items)
4059
for b, b_items in zip(blocks, blk_items)
4060
}
4061
- new_blocks: List[Block] = []
+ new_blocks: List["Block"] = []
4062
new_blk_items = []
4063
for ea in values_axes:
4064
items = tuple(ea.values)
0 commit comments