We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c15424 commit 62cd7cdCopy full SHA for 62cd7cd
pandas/core/frame.py
@@ -11073,7 +11073,6 @@ def merge(
11073
11074
if not left_key or not right_key:
11075
raise ValueError("Must specify 'on' or both 'left_on' and 'right_on'")
11076
-
11077
result = []
11078
11079
right_indexed = {}
@@ -11112,7 +11111,6 @@ def merge(
11112
11111
row = {k: None for k in self.columns}
11113
row.update({k: v for k, v in r_row.items()})
11114
result.append(row)
11115
11116
if sort:
11117
result.sort(key=lambda x: x.get(left_key))
11118
0 commit comments