Skip to content

Commit 40460d1

Browse files
committed
Use f-string
1 parent 2c5c349 commit 40460d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/autocomplete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def matches(self, cursor_offset, line, **kwargs):
511511
return None
512512
if argspec:
513513
matches = {
514-
name + "="
514+
f"{name}="
515515
for name in argspec[1][0]
516516
if isinstance(name, str) and name.startswith(r.word)
517517
}

0 commit comments

Comments
 (0)