refactor: Replace six.moves.zip_longest by itertools.zip_longest

This commit is contained in:
Takeshi KOMIYA 2018-12-15 20:08:00 +09:00
parent aaf0046f44
commit 485983684e

View File

@ -11,13 +11,11 @@
"""
import pickle
import warnings
from itertools import product
from itertools import product, zip_longest
from operator import itemgetter
from os import path
from uuid import uuid4
from six.moves import zip_longest
from sphinx.deprecation import RemovedInSphinx30Warning
from sphinx.transforms import SphinxTransform