Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix mypy issue on join how arg
  • Loading branch information
TrevorBergeron committed Nov 8, 2023
commit 146b74cec1583c12e0761d478bfb882900c117f5
2 changes: 1 addition & 1 deletion bigframes/core/compile/single_column.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def join_by_column_unordered(
left_table,
right_table,
predicates=join_conditions,
how=how,
how=how, # type: ignore
)
# We could filter out the original join columns, but predicates/ordering
# might still reference them in implicit joins.
Expand Down