Remove use of six.next

Use Python builtin next() instead.
This commit is contained in:
Jon Dufresne 2018-09-23 20:51:14 -07:00
parent ff8df59ac1
commit 24cd979a1f

View File

@ -17,7 +17,7 @@ from collections import defaultdict
from copy import copy
from os import path
from six import BytesIO, next
from six import BytesIO
from sphinx import addnodes
from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning