Skip to content

Commit

Permalink
chore(deps): remove inflection
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and cpcloud committed May 11, 2022
1 parent 6f5a08c commit d556122
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
3 changes: 1 addition & 2 deletions ibis_substrait/compiler/decompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import ibis.expr.operations as ops
import ibis.expr.schema as sch
import ibis.expr.types as ir
import inflection
import pytz
import toolz

Expand Down Expand Up @@ -572,7 +571,7 @@ def _decompile_expression_aggregate_function(
) -> ir.ValueExpr:
extension = decompiler.function_extensions[aggregate_function.function_reference]
function_name = extension.name
op_type = getattr(ops, inflection.camelize(function_name))
op_type = getattr(ops, SUBSTRAIT_IBIS_OP_MAPPING[function_name])
args = [
decompile(arg, children, field_offsets, decompiler)
for arg in aggregate_function.args
Expand Down
12 changes: 0 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d556122

Please sign in to comment.