summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-06-03 10:17:54 +0000
committerGerrit Code Review <review@openstack.org>2020-06-03 10:17:54 +0000
commit34492ee6089d8970bacfe1b5577a6ef6521e1723 (patch)
tree2a7f34a31fd7faa3561a9ae3e0d3a76893c08e89
parent130df13e189cf0e1de8a16190eeb6daf9fb34556 (diff)
parent9c4f23a01923563d43b2ddf5048340cc386e2c33 (diff)
downloadtooz-34492ee6089d8970bacfe1b5577a6ef6521e1723.tar.gz
Merge "Stop to use the __future__ module."
-rw-r--r--tooz/drivers/consul.py2
-rw-r--r--tooz/drivers/etcd3.py2
-rw-r--r--tooz/drivers/etcd3gw.py2
-rw-r--r--tooz/drivers/redis.py2
-rw-r--r--tooz/drivers/zake.py2
5 files changed, 0 insertions, 10 deletions
diff --git a/tooz/drivers/consul.py b/tooz/drivers/consul.py
index 2b9c23b..6f6ef8a 100644
--- a/tooz/drivers/consul.py
+++ b/tooz/drivers/consul.py
@@ -14,8 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-from __future__ import absolute_import
-
import consul
from oslo_utils import encodeutils
diff --git a/tooz/drivers/etcd3.py b/tooz/drivers/etcd3.py
index d8e7aa5..8dcdaa7 100644
--- a/tooz/drivers/etcd3.py
+++ b/tooz/drivers/etcd3.py
@@ -11,8 +11,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-
-from __future__ import absolute_import
import contextlib
import functools
import threading
diff --git a/tooz/drivers/etcd3gw.py b/tooz/drivers/etcd3gw.py
index e64301e..4b9cada 100644
--- a/tooz/drivers/etcd3gw.py
+++ b/tooz/drivers/etcd3gw.py
@@ -11,8 +11,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-
-from __future__ import absolute_import
import base64
import threading
import uuid
diff --git a/tooz/drivers/redis.py b/tooz/drivers/redis.py
index c6a5559..f388f4d 100644
--- a/tooz/drivers/redis.py
+++ b/tooz/drivers/redis.py
@@ -14,8 +14,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-from __future__ import absolute_import
-
import contextlib
from distutils import version
import functools
diff --git a/tooz/drivers/zake.py b/tooz/drivers/zake.py
index 2c2a475..6c77083 100644
--- a/tooz/drivers/zake.py
+++ b/tooz/drivers/zake.py
@@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-from __future__ import absolute_import
-
from zake import fake_client
from zake import fake_storage