Skip to content

Commit 5eed6af

Browse files
committed
Fix cli after named-tuple refactoring
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent b71f411 commit 5eed6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ def mkargspec(self, topline, in_arg, down):
709709
is_bound_method = topline.is_bound_method
710710
if py3:
711711
kwonly = topline.argspec.kwonly
712-
kwonly_defaults = topline.kwonly_defaults or dict()
712+
kwonly_defaults = topline.argspec.kwonly_defaults or dict()
713713
max_w = int(self.scr.getmaxyx()[1] * 0.6)
714714
self.list_win.erase()
715715
self.list_win.resize(3, max_w)

0 commit comments

Comments
 (0)