Skip to content

Commit 065d8db

Browse files
fix missing ]
1 parent 60642c5 commit 065d8db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/constant_fold.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def constant_fold_unary_op(op: str, value: ConstantValue) -> int | float | None:
194194
return None
195195

196196

197-
foldable_builtins: dict[str, Callable[..., Any] = {
197+
foldable_builtins: dict[str, Callable[..., Any]] = {
198198
"builtins.str": str,
199199
"builtins.int": int,
200200
"builtins.bool": bool,

0 commit comments

Comments
 (0)