Skip to content

Commit 76f069b

Browse files
committed
Fix placement of )
1 parent 2c3c84f commit 76f069b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/inspection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def parsekeywordpairs(signature):
143143
if value and (parendepth > 0 or value.strip()):
144144
substack.append(value)
145145

146-
return {item[0]: "".join(item[2:] for item in stack if len(item) >= 3)}
146+
return {item[0]: "".join(item[2:]) for item in stack if len(item) >= 3}
147147

148148

149149
def fixlongargs(f, argspec):

0 commit comments

Comments
 (0)