From 8c13060c879bbe2cedac4a699a162fb9a9cb487f Mon Sep 17 00:00:00 2001 From: Fabrice Bacchella Date: Mon, 1 Jan 2018 15:54:39 +0100 Subject: [PATCH] ImproperlyConfigured is imported but not used in transport. (#693) --- elasticsearch/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/transport.py b/elasticsearch/transport.py index e104d387..a7aa6009 100644 --- a/elasticsearch/transport.py +++ b/elasticsearch/transport.py @@ -5,7 +5,7 @@ from .connection import Urllib3HttpConnection from .connection_pool import ConnectionPool, DummyConnectionPool from .serializer import JSONSerializer, Deserializer, DEFAULT_SERIALIZERS from .exceptions import ConnectionError, TransportError, SerializationError, \ - ConnectionTimeout, ImproperlyConfigured + ConnectionTimeout def get_host_info(node_info, host):