Skip to content

Commit a7d729e

Browse files
committed
PEP8
1 parent 2141cf7 commit a7d729e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bpython/inspection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
_name = LazyReCompile(r'[a-zA-Z_]\w*$')
4343

4444
ArgSpec = namedtuple('ArgSpec', ['args', 'varargs', 'varkwargs', 'defaults',
45-
'kwonly', 'kwonly_defaults', 'annotations'])
45+
'kwonly', 'kwonly_defaults', 'annotations'])
4646

4747
FuncProps = namedtuple('FuncProps', ['func', 'argspec', 'is_bound_method'])
4848

@@ -240,7 +240,7 @@ def getfuncprops(func, f):
240240
argspec = list(argspec)
241241
fixlongargs(f, argspec)
242242
if len(argspec) == 4:
243-
argspec = argspec + [list(),dict(),None]
243+
argspec = argspec + [list(), dict(), None]
244244
argspec = ArgSpec(*argspec)
245245
fprops = FuncProps(func, argspec, is_bound_method)
246246
except (TypeError, KeyError):

0 commit comments

Comments
 (0)