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 a1781f2 commit 6e89341Copy full SHA for 6e89341
python/tests/test_runtime.py
@@ -39,7 +39,7 @@ def test_function_call():
39
)
40
one = RuntimeFunction(decls, "one")
41
assert (
42
- one().__egg_typed_expr__
+ one().__egg_typed_expr__ # type: ignore
43
== RuntimeExpr(decls, TypedExprDecl(JustTypeRef("i64"), CallDecl(FunctionRef("one")))).__egg_typed_expr__
44
45
@@ -74,7 +74,7 @@ def test_classmethod_call():
74
i64 = RuntimeClass(decls, "i64")
75
unit = RuntimeClass(decls, "unit")
76
77
- Map[i64, unit].create().__egg_typed_expr__
+ Map[i64, unit].create().__egg_typed_expr__ # type: ignore
78
== RuntimeExpr(
79
decls,
80
TypedExprDecl(
0 commit comments