Skip to content

Commit 6597401

Browse files
committed
)
1 parent 7a1d7df commit 6597401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/analysis/ircheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def check_dict_items_valid_literals(self, op: LoadLiteral, d: dict[object, objec
293293
self.fail(op, f"Invalid type for key of dict literal: {type(k)})")
294294
# Acceptable value types: str, bytes, bool, int, float, complex
295295
if not isinstance(v, valid_types):
296-
self.fail(op, f"Invalid type for value of dict literal: {type(v)})"))
296+
self.fail(op, f"Invalid type for value of dict literal: {type(v)})")
297297

298298
def visit_load_literal(self, op: LoadLiteral) -> None:
299299
expected_type = None

0 commit comments

Comments
 (0)