diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-23 09:18:21 -0700 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-23 09:22:06 -0700 |
commit | 02d06bdaf02957bcaca2c63a8906ffef7f7e01ee (patch) | |
tree | ce648c4e006a60d1104b1af5845c5628a60093ea /sphinx/ext/coverage.py | |
parent | 408219cf81c1bac0c31684ca8fe36a4cb8c88cfc (diff) | |
download | sphinx-git-02d06bdaf02957bcaca2c63a8906ffef7f7e01ee.tar.gz |
Remove uses of six.moves that did not cause any type errors
Removal of the remaining imports may require passing "--python-version
3.5" to the mypy command.
Diffstat (limited to 'sphinx/ext/coverage.py')
-rw-r--r-- | sphinx/ext/coverage.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index 9300c1f74..c4078a928 100644 --- a/sphinx/ext/coverage.py +++ b/sphinx/ext/coverage.py @@ -12,11 +12,10 @@ import glob import inspect +import pickle import re from os import path -from six.moves import cPickle as pickle - import sphinx from sphinx.builders import Builder from sphinx.locale import __ |