Skip to content

Commit

Permalink
fix: mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tokoko committed Aug 28, 2024
1 parent 3d12921 commit f855234
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ibis_substrait/compiler/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -818,11 +818,11 @@ def filter(
def apply_projection(
schema_len: int,
relation: stalg.Rel,
values,
values: Mapping[str, ops.Value],
compiler: SubstraitCompiler,
child_rel_field_offsets,
kwargs,
):
child_rel_field_offsets: Mapping[ops.TableNode, int] | None,
kwargs: Mapping,
) -> stalg.ReadRel:
mapping_counter = itertools.count(schema_len)

return stalg.Rel(
Expand Down

0 comments on commit f855234

Please sign in to comment.