Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 43e34cd

Browse files
committed
fix format
1 parent c218d1a commit 43e34cd

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

bigframes/core/blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2351,7 +2351,7 @@ def merge(
23512351
joined_expr, left_post_join_ids, right_post_join_ids
23522352
)
23532353
else:
2354-
joined_expr, resolved_join_ids = resolve_col_join_ids( # type: ignore
2354+
joined_expr, resolved_join_ids = resolve_col_join_ids( # type: ignore
23552355
joined_expr,
23562356
left_post_join_ids,
23572357
right_post_join_ids,

bigframes/core/reshape/merge.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ def _validate_left_right_on(
155155
or not right.columns.join(common_cols, how="inner").is_unique
156156
):
157157
raise ValueError(f"Data columns not unique: {repr(common_cols)}")
158-
return _to_col_ids(left, common_cols.to_list()), _to_col_ids(right, common_cols.to_list())
158+
return _to_col_ids(left, common_cols.to_list()), _to_col_ids(
159+
right, common_cols.to_list()
160+
)
159161

160162
elif on is not None:
161163
if left_on is not None or right_on is not None:
@@ -201,7 +203,7 @@ def _validate_left_right_on(
201203
return list(left._block.index_columns), _to_col_ids(right, right_on)
202204

203205
# The user correctly specified left_on and right_on
204-
if len(right_on) != len(left_on): # type: ignore
206+
if len(right_on) != len(left_on): # type: ignore
205207
raise ValueError("len(right_on) must equal len(left_on)")
206208

207209
return _to_col_ids(left, left_on), _to_col_ids(right, right_on)

0 commit comments

Comments
 (0)