mirror of https://github.com/docker/docker-py.git
Remove unused imports
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
ce2b60ecf6
commit
472a7ffce8
|
@ -12,10 +12,7 @@
|
||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import errno
|
|
||||||
import json
|
import json
|
||||||
import os
|
|
||||||
import select
|
|
||||||
import struct
|
import struct
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
@ -32,7 +29,7 @@ from .ssladapter import ssladapter
|
||||||
from .tls import TLSConfig
|
from .tls import TLSConfig
|
||||||
from .transport import UnixAdapter
|
from .transport import UnixAdapter
|
||||||
from .utils import utils, check_resource, update_headers, kwargs_from_env
|
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:
|
try:
|
||||||
from .transport import NpipeAdapter
|
from .transport import NpipeAdapter
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
|
Loading…
Reference in New Issue