Skip to content

Commit d039d75

Browse files
Try fixing 3.8 typing error
1 parent d21d13e commit d039d75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/egglog/runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def _call(
247247
for arg, tp in zip_longest(args, fn_decl.arg_types, fillvalue=fn_decl.var_arg_type)
248248
]
249249
else:
250-
upcasted_args = cast(list[RuntimeExpr], args)
250+
upcasted_args = cast("list[RuntimeExpr]", args)
251251
arg_decls = tuple(arg.__egg_typed_expr__ for arg in upcasted_args)
252252

253253
arg_types = [decl.tp for decl in arg_decls]

0 commit comments

Comments
 (0)