Skip to content

Commit 84500db

Browse files
committed
FIX: PEP8 - E128 continuation line under-indented for visual indent
1 parent 17d8cd5 commit 84500db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/sphinxext/numpy_ext/numpydoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def mangle_signature(app, what, name, obj, options, sig, retann):
8282
# Do not try to inspect classes that don't define `__init__`
8383
if (inspect.isclass(obj) and
8484
(not hasattr(obj, '__init__') or
85-
'initializes x; see ' in pydoc.getdoc(obj.__init__))):
85+
'initializes x; see ' in pydoc.getdoc(obj.__init__))):
8686
return '', ''
8787

8888
if not (callable(obj) or hasattr(obj, '__argspec_is_invalid_')): return

0 commit comments

Comments
 (0)