Skip to content

Commit

Permalink
refactor: uncouple MultiQuantile class from Quantile
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jan 7, 2023
1 parent 8bc35f1 commit 9c48f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/expr/operations/reductions.py
Expand Up @@ -129,7 +129,7 @@ class Quantile(Filterable, Reduction):


@public
class MultiQuantile(Quantile):
class MultiQuantile(Filterable, Reduction):
arg = rlz.any
quantile = rlz.value(dt.Array(dt.float64))
interpolation = rlz.isin({'linear', 'lower', 'higher', 'midpoint', 'nearest'})
Expand Down

0 comments on commit 9c48f8c

Please sign in to comment.