Skip to content

Commit

Permalink
fix string which was supposed to be an f-string (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
terencehonles authored May 13, 2021
1 parent 1a10e8d commit 7298175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/retype/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ def get_annotated_param(node, arg, *, missing_ok=False, flags):

if actual_ann is not None:
ensure_annotations_equal(
"annotation for {arg.arg!r}", ann, actual_ann, flags=flags
f"annotation for {arg.arg!r}", ann, actual_ann, flags=flags
)

return Node(syms.tname, [new(node), new(_colon), ann])
Expand Down

0 comments on commit 7298175

Please sign in to comment.