Skip to content

Commit 7f5052e

Browse files
committed
remove linux job from azure-pipelines.yml
1 parent ba9f12d commit 7f5052e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/internals/blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ def _replace_list(
833833

834834
rb = [self if inplace else self.copy()]
835835
for i, (src, dest) in enumerate(pairs):
836-
new_rb: List[Block] = []
836+
new_rb: List["Block"] = []
837837
for blk in rb:
838838
m = masks[i]
839839
convert = i == src_len # only convert once at the end

pandas/io/pytables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4058,7 +4058,7 @@ def get_blk_items(mgr):
40584058
tuple(b_items.tolist()): (b, b_items)
40594059
for b, b_items in zip(blocks, blk_items)
40604060
}
4061-
new_blocks: List[Block] = []
4061+
new_blocks: List["Block"] = []
40624062
new_blk_items = []
40634063
for ea in values_axes:
40644064
items = tuple(ea.values)

0 commit comments

Comments
 (0)