Skip to content

Commit

Permalink
fix(ir): change "it not a" to "is not a" in errors
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and cpcloud committed Jul 7, 2023
1 parent 8ffd9f8 commit d0d463f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibis/expr/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def scalar(inner, arg, **kwargs):
if arg.output_shape.is_scalar():
return arg
else:
raise com.IbisTypeError(f"{arg} it not a scalar")
raise com.IbisTypeError(f"{arg} is not a scalar")


@rule
Expand All @@ -245,7 +245,7 @@ def column(inner, arg, **kwargs):
if arg.output_shape.is_columnar():
return arg
else:
raise com.IbisTypeError(f"{arg} it not a column")
raise com.IbisTypeError(f"{arg} is not a column")


any = value(None)
Expand Down

0 comments on commit d0d463f

Please sign in to comment.