We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45d298d + f3b70e0 commit 0538c43Copy full SHA for 0538c43
pandas/tools/merge.py
@@ -984,11 +984,11 @@ def _prepare_blocks(self):
984
return blockmaps, reindexed_data
985
986
def _get_concatenated_data(self):
987
- try:
988
- # need to conform to same other (joined) axes for block join
989
- blockmaps, rdata = self._prepare_blocks()
990
- kinds = _get_all_block_kinds(blockmaps)
+ # need to conform to same other (joined) axes for block join
+ blockmaps, rdata = self._prepare_blocks()
+ kinds = _get_all_block_kinds(blockmaps)
991
+ try:
992
new_blocks = []
993
for kind in kinds:
994
klass_blocks = [mapping.get(kind) for mapping in blockmaps]
0 commit comments