Skip to content

Commit f8a8eb4

Browse files
committed
FIX: PEP8 - E227 missing whitespace around bitwise or shift operator
1 parent 9007d17 commit f8a8eb4

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
@@ -38,7 +38,7 @@ def mangle_docstrings(app, what, name, obj, options, lines,
3838
if what == 'module':
3939
# Strip top title
4040
title_re = re.compile(ur'^\s*[#*=]{4,}\n[a-z0-9 -]+\n[#*=]{4,}\s*',
41-
re.I|re.S)
41+
re.I |re.S)
4242
lines[:] = title_re.sub(u'', u"\n".join(lines)).split(u"\n")
4343
else:
4444
doc = get_doc_object(obj, what, u"\n".join(lines), config=cfg)

0 commit comments

Comments
 (0)