8000 Fix comment line being too long · stuartcampbell/matplotlib@2751f81 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2751f81

Browse files
Fix comment line being too long
1 parent 56f92e4 commit 2751f81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/cbook/deprecation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ def finalize(wrapper, new_doc):
175175
try:
176176
obj.__doc__ = new_doc
177177
except (AttributeError, TypeError):
178-
pass # cls.__doc__ is not writeable on Py2. TypeError occurs on PyPy
178+
pass # cls.__doc__ is not writeable on Py2.
179+
#TypeError occurs on PyPy
179180
obj.__init__ = wrapper
180181
return obj
181182
else:

0 commit comments

Comments
 (0)
0