Skip to content

Commit

Permalink
fix(extensions): pass over extension top-matter
Browse files Browse the repository at this point in the history
the geometry extension file has some additional top-matter that we
weren't handling gracefully.
  • Loading branch information
gforsyth committed Oct 5, 2023
1 parent 38a1dfb commit c7f3e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis_substrait/compiler/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def castable(self) -> None:


def _parse_func(entry: Mapping[str, Any]) -> Iterator[FunctionEntry]:
for impl in entry["impls"]:
for impl in entry.get("impls", []):
sf = FunctionEntry(entry["name"])
sf.parse(impl)

Expand Down

0 comments on commit c7f3e34

Please sign in to comment.