summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAanand Prasad <aanand.prasad@gmail.com>2016-07-13 16:52:58 -0400
committerAanand Prasad <aanand.prasad@gmail.com>2016-07-13 17:08:17 -0400
commit472a7ffce8032a92dbcc264b9178a3e92695f8ae (patch)
treef2b23eaae66d62c5c108c7f2ef9c7a40b6161007
parentce2b60ecf6aa56de73ee3b8ab6c67ee10905e0ac (diff)
downloaddocker-py-472a7ffce8032a92dbcc264b9178a3e92695f8ae.tar.gz
Remove unused imports
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
-rw-r--r--docker/client.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/docker/client.py b/docker/client.py
index 7df587c..e131829 100644
--- a/docker/client.py
+++ b/docker/client.py
@@ -12,10 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import errno
import json
-import os
-import select
import struct
import requests
@@ -32,7 +29,7 @@ from .ssladapter import ssladapter
from .tls import TLSConfig
from .transport import UnixAdapter
from .utils import utils, check_resource, update_headers, kwargs_from_env
-from .utils.socket import read_socket, next_packet_size, read_iter
+from .utils.socket import read_iter
try:
from .transport import NpipeAdapter
except ImportError: