From e93a00b24e05b9b0fa6eeb0eb7e4974a711b404d Mon Sep 17 00:00:00 2001 From: Takashi Natsume Date: Sun, 26 Apr 2020 06:56:23 +0000 Subject: Remove future imports These particular imports are no longer needed in a Python 3-only world. Change-Id: I405b32c8cdd60fb19270a8f6fe2e2728022f7c6e Signed-off-by: Takashi Natsume --- novaclient/shell.py | 1 - novaclient/v2/shell.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/novaclient/shell.py b/novaclient/shell.py index 22952b7c..a81db89a 100644 --- a/novaclient/shell.py +++ b/novaclient/shell.py @@ -18,7 +18,6 @@ Command-line interface to the OpenStack Nova API. """ -from __future__ import print_function import argparse import logging import sys diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py index e0498df8..753dd127 100644 --- a/novaclient/v2/shell.py +++ b/novaclient/v2/shell.py @@ -16,8 +16,6 @@ # License for the specific language governing permissions and limitations # under the License. -from __future__ import print_function - import argparse import collections import datetime -- cgit v1.2.1