Skip to content

Commit 2d7a0f9

Browse files
committed
Merged in leahsteinberg/bpython (pull request bpython#38)
fix bpython#268 changed repr to string in curties display function
2 parents 3ddde51 + 72e6a20 commit 2d7a0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/replpainter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def formatted_argspec(argspec, columns, config):
9595
for i, arg in enumerate(args):
9696
kw = None
9797
if kwargs and i >= len(args) - len(kwargs):
98-
kw = repr(kwargs[i - (len(args) - len(kwargs))])
98+
kw = str(kwargs[i - (len(args) - len(kwargs))])
9999
color = token_color if in_arg in (i, arg) else arg_color
100100
if i == in_arg or arg == in_arg:
101101
color = bolds[color]

0 commit comments

Comments
 (0)