diff --git a/cinder/cmd/manage.py b/cinder/cmd/manage.py index e5e92cdcac8..45fc102f4b8 100644 --- a/cinder/cmd/manage.py +++ b/cinder/cmd/manage.py @@ -50,8 +50,6 @@ """CLI interface for cinder management.""" -from __future__ import print_function - try: import collections.abc as collections except ImportError: diff --git a/cinder/image/glance.py b/cinder/image/glance.py index 37133b51f5a..f2a6648d9af 100644 --- a/cinder/image/glance.py +++ b/cinder/image/glance.py @@ -16,9 +16,6 @@ """Implementation of an image service that uses Glance as the backend""" - -from __future__ import absolute_import - import copy import itertools import random diff --git a/cinder/tests/fixtures.py b/cinder/tests/fixtures.py index 79e0b73b4cd..67754c689cd 100644 --- a/cinder/tests/fixtures.py +++ b/cinder/tests/fixtures.py @@ -15,8 +15,6 @@ # under the License. """Fixtures for Cinder tests.""" -# NOTE(mriedem): This is needed for importing from fixtures. -from __future__ import absolute_import import logging as std_logging import os diff --git a/cinder/volume/drivers/dell_emc/unity/utils.py b/cinder/volume/drivers/dell_emc/unity/utils.py index d924f6ed1fa..253838086ac 100644 --- a/cinder/volume/drivers/dell_emc/unity/utils.py +++ b/cinder/volume/drivers/dell_emc/unity/utils.py @@ -13,8 +13,6 @@ # License for the specific language governing permissions and limitations # under the License. -from __future__ import division - import contextlib from distutils import version import functools diff --git a/cinder/volume/drivers/storpool.py b/cinder/volume/drivers/storpool.py index b3e1a786859..2a379be4b49 100644 --- a/cinder/volume/drivers/storpool.py +++ b/cinder/volume/drivers/storpool.py @@ -15,8 +15,6 @@ """StorPool block device driver""" -from __future__ import absolute_import - import platform from oslo_config import cfg