We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f8e32 commit 8651b1aCopy full SHA for 8651b1a
python/egglog/runtime.py
@@ -816,7 +816,9 @@ def _numeric_binary_method(
816
best_method = min_binary_conversion(name, resolve_type(self), resolve_type(other))
817
818
if not best_method:
819
- raise RuntimeError(f"Cannot resolve {name} for {self} and {other}, no conversion found")
+ raise RuntimeError(
820
+ f"Cannot resolve {name} for {resolve_type(self)} and {resolve_type(other)}, no conversion found"
821
+ )
822
self, other = best_method[0](self), best_method[1](other)
823
824
method_ref = MethodRef(self.__egg_class_ident__, name)
0 commit comments