Remove import statement for six

Utilization of six library have been removed since
Ic6da328a6219c8a00d38602f6b539a2ff5be1b2e .
However an import statement for six in tools/pyir.py
has not been removed.
So remove the import statement for six in tools/pyir.py.

Signed-off-by: Takashi Natsume <takanattie@gmail.com>
Change-Id: Iff0252ab07cef36b0ec8f4abcc3092959fae161c
This commit is contained in:
Takashi Natsume 2021-12-19 14:16:03 +09:00
parent 6a922e45b0
commit cb031937ed
1 changed files with 1 additions and 3 deletions

View File

@ -16,6 +16,7 @@
#
import abc
import argparse
import contextlib
import importlib
import inspect
@ -26,9 +27,6 @@ import shutil
import sys
import tempfile
import argparse
import six
from oslo_serialization import jsonutils
__version__ = '0.0.2'