Skip to content

Commit 7cd9c62

Browse files
committed
fix mypy errs
1 parent 0d7b234 commit 7cd9c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/irbuild/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@ def transform_dict_expr(builder: IRBuilder, expr: DictExpr) -> Value:
10511051
static_dict = dict_literal_values(builder, expr.items, expr.line)
10521052
if static_dict is not None:
10531053
# Register the static dict and return a copy at runtime
1054-
static_val = builder.add(LoadLiteral(static_dict, dict_rprimitive))
1054+
static_val = builder.add(LoadLiteral(static_dict, dict_rprimitive)) # type: ignore [arg-type]
10551055
return builder.call_c(dict_template_copy_op, [static_val], expr.line)
10561056

10571057
# If that fails, build dict at runtime

0 commit comments

Comments
 (0)