Skip to content

Commit 7124fa1

Browse files
fix f-string prefix
Co-authored-by: Piotr Sawicki <[email protected]>
1 parent 11a2fa2 commit 7124fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/ir/ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ def __init__(self, src: Value, index: int, line: int = -1, *, borrow: bool = Fal
10471047
super().__init__(line)
10481048
assert isinstance(
10491049
src.type, RTuple
1050-
), "TupleGet only operates on tuples, not {type(src.type).__name__}"
1050+
), f"TupleGet only operates on tuples, not {type(src.type).__name__}"
10511051
src_len = len(src.type.types)
10521052
self.src = src
10531053
self.index = index

0 commit comments

Comments
 (0)