Skip to content

Commit 69c7d1c

Browse files
committed
pep8 unused variable
1 parent 83c706c commit 69c7d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ot/externals/funcsigs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def signature(obj):
9999
partial_keywords = obj.keywords or {}
100100
try:
101101
ba = sig.bind_partial(*partial_args, **partial_keywords)
102-
except TypeError as ex:
102+
except TypeError:
103103
msg = 'partial object {0!r} has incorrect arguments'.format(obj)
104104
raise ValueError(msg)
105105

0 commit comments

Comments
 (0)