diff options
author | Peter Cock <p.j.a.cock@googlemail.com> | 2017-09-20 14:47:46 +0100 |
---|---|---|
committer | Peter Cock <p.j.a.cock@googlemail.com> | 2017-09-20 14:48:33 +0100 |
commit | 4d2cd03879af3eff859fc2be06cfacd33ea05ce0 (patch) | |
tree | 5328750e0d494a747e78eac3d249666c04560c3a /sphinx/ext/viewcode.py | |
parent | 99503bdb6cca2be4d06772cef4cf79eed8d2eb19 (diff) | |
download | sphinx-git-4d2cd03879af3eff859fc2be06cfacd33ea05ce0.tar.gz |
Reformat to avoid overly long line flake8 E501
Diffstat (limited to 'sphinx/ext/viewcode.py')
-rw-r--r-- | sphinx/ext/viewcode.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index 68655146a..ce67081d3 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -146,10 +146,11 @@ def collect_pages(app): # app.builder.info(' (%d module code pages)' % # len(env._viewcode_modules), nonl=1) - for modname, entry in status_iterator(sorted(iteritems(env._viewcode_modules)), # type: ignore - 'highlighting module code... ', "blue", - len(env._viewcode_modules), # type: ignore - app.verbosity, lambda x: x[0]): + for modname, entry in status_iterator( + sorted(iteritems(env._viewcode_modules)), # type: ignore + 'highlighting module code... ', "blue", + len(env._viewcode_modules), # type: ignore + app.verbosity, lambda x: x[0]): if not entry: continue code, tags, used, refname = entry |