Skip to content

Commit 6e89341

Browse files
Fix mypy
1 parent a1781f2 commit 6e89341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/tests/test_runtime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_function_call():
3939
)
4040
one = RuntimeFunction(decls, "one")
4141
assert (
42-
one().__egg_typed_expr__
42+
one().__egg_typed_expr__ # type: ignore
4343
== RuntimeExpr(decls, TypedExprDecl(JustTypeRef("i64"), CallDecl(FunctionRef("one")))).__egg_typed_expr__
4444
)
4545

@@ -74,7 +74,7 @@ def test_classmethod_call():
7474
i64 = RuntimeClass(decls, "i64")
7575
unit = RuntimeClass(decls, "unit")
7676
assert (
77-
Map[i64, unit].create().__egg_typed_expr__
77+
Map[i64, unit].create().__egg_typed_expr__ # type: ignore
7878
== RuntimeExpr(
7979
decls,
8080
TypedExprDecl(

0 commit comments

Comments
 (0)