TrivialFix: Remove unnecessary future imports

print_function is available from python 3.0.0
with_statement has been available from python 2.6

Change-Id: Idb6dd5bb4f9d57cf544e8e55d173e3c85c9da455
Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
This commit is contained in:
Goutham Pacha Ravi 2020-05-05 08:38:56 -07:00
parent d845300e30
commit 7e6a76067a
4 changed files with 0 additions and 8 deletions

View File

@ -15,8 +15,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import print_function
import os
import pprint
import signal

View File

@ -53,8 +53,6 @@
CLI interface for manila management.
"""
from __future__ import print_function
import os
import sys

View File

@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import with_statement
from alembic import context
from manila.db.sqlalchemy import api as db_api

View File

@ -22,8 +22,6 @@ environment, it should be kept strictly compatible with Python 2.6.
Synced in from openstack-common
"""
from __future__ import print_function
import optparse
import os
import subprocess