Skip to content

Commit b87e0b9

Browse files
committed
avoid flake8 complaint
1 parent 4d26933 commit b87e0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1697,7 +1697,7 @@ def _wrap_transformed_output(
16971697

16981698
return result
16991699

1700-
def _agg_blocks_to_frame(self, items: Index, blocks: List["Block"]) -> DataFrame:
1700+
def _agg_blocks_to_frame(self, items: Index, blocks: "List[Block]") -> DataFrame:
17011701
if not self.as_index:
17021702
index = np.arange(blocks[0].values.shape[-1])
17031703
mgr = BlockManager(blocks, axes=[items, index])

0 commit comments

Comments
 (0)