From 95c01abf3891e18e956b0db4e5207c1e3205af5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Beraud?= Date: Tue, 2 Jun 2020 20:44:50 +0200 Subject: [PATCH] Stop to use the __future__ module. The __future__ module [1] was used in this context to ensure compatibility between python 2 and python 3. We previously dropped the support of python 2.7 [2] and now we only support python 3 so we don't need to continue to use this module and the imports listed below. Imports commonly used and their related PEPs: - `division` is related to PEP 238 [3] - `print_function` is related to PEP 3105 [4] - `unicode_literals` is related to PEP 3112 [5] - `with_statement` is related to PEP 343 [6] - `absolute_import` is related to PEP 328 [7] [1] https://docs.python.org/3/library/__future__.html [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html [3] https://www.python.org/dev/peps/pep-0238 [4] https://www.python.org/dev/peps/pep-3105 [5] https://www.python.org/dev/peps/pep-3112 [6] https://www.python.org/dev/peps/pep-0343 [7] https://www.python.org/dev/peps/pep-0328 Change-Id: Icc115b2271a6fd84f3952b03406250367babd273 --- docs-site/generate_infra_index.py | 2 -- .../elements/openstack-repos/extra-data.d/50-create-repo-list | 2 -- .../files/release-tools/launchpad_add_comment.py | 2 -- specs/generate_specs_site.py | 2 -- 4 files changed, 8 deletions(-) diff --git a/docs-site/generate_infra_index.py b/docs-site/generate_infra_index.py index 7bf27a56e6..41b062b538 100755 --- a/docs-site/generate_infra_index.py +++ b/docs-site/generate_infra_index.py @@ -14,8 +14,6 @@ """Read the infra-documents.yaml file and generate the index.html file. """ -from __future__ import print_function - import argparse import os diff --git a/nodepool/elements/openstack-repos/extra-data.d/50-create-repo-list b/nodepool/elements/openstack-repos/extra-data.d/50-create-repo-list index ba64e2a8f9..7de9d7bedb 100755 --- a/nodepool/elements/openstack-repos/extra-data.d/50-create-repo-list +++ b/nodepool/elements/openstack-repos/extra-data.d/50-create-repo-list @@ -16,8 +16,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from __future__ import print_function - import os import yaml diff --git a/roles/copy-release-tools-scripts/files/release-tools/launchpad_add_comment.py b/roles/copy-release-tools-scripts/files/release-tools/launchpad_add_comment.py index 3f2f382efe..7f548f44f2 100755 --- a/roles/copy-release-tools-scripts/files/release-tools/launchpad_add_comment.py +++ b/roles/copy-release-tools-scripts/files/release-tools/launchpad_add_comment.py @@ -17,8 +17,6 @@ # License for the specific language governing permissions and limitations # under the License. -from __future__ import print_function - import argparse import os diff --git a/specs/generate_specs_site.py b/specs/generate_specs_site.py index 0dfe75a7ee..96f0896d8a 100755 --- a/specs/generate_specs_site.py +++ b/specs/generate_specs_site.py @@ -14,8 +14,6 @@ """Read the specs.yaml file and generate the index.html and specs.opml files. """ -from __future__ import print_function - import argparse import os