summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHervé Beraud <hberaud@redhat.com>2020-06-02 21:06:08 +0200
committerHervé Beraud <hberaud@redhat.com>2020-06-02 21:06:08 +0200
commit816a7bca58c214d51619c86674c2934ab06e9ed5 (patch)
tree77ae3991588a1c974f6398fb4a1644ffa5cb4e36 /tools
parent94268e6a2069f339532d2eb618d09d8bc5cf688c (diff)
downloadtrove-816a7bca58c214d51619c86674c2934ab06e9ed5.tar.gz
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: I0adf51fb6a54c323c3d7a26ea62c23184a99933d
Diffstat (limited to 'tools')
-rwxr-xr-xtools/install_venv.py2
-rwxr-xr-xtools/trove-pylint.py2
2 files changed, 0 insertions, 4 deletions
diff --git a/tools/install_venv.py b/tools/install_venv.py
index eee9e720..72ffaf09 100755
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -22,8 +22,6 @@
Installation script for Trove's development virtualenv
"""
-from __future__ import print_function
-
import os
import subprocess
import sys
diff --git a/tools/trove-pylint.py b/tools/trove-pylint.py
index d30d65a1..fa8a5d97 100755
--- a/tools/trove-pylint.py
+++ b/tools/trove-pylint.py
@@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-from __future__ import print_function
-
import fnmatch
import json
from collections import OrderedDict