summaryrefslogtreecommitdiff
path: root/dummyserver/testcase.py
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2020-10-01 16:45:14 +0400
committerGitHub <noreply@github.com>2020-10-01 07:45:14 -0500
commitdabe77d7d3f69c1b961826dabac28eda86699024 (patch)
tree009704b5ebbf7c26436244296d23e7c6f3f63f29 /dummyserver/testcase.py
parent9bc44598d90a39a6de665d37dc593905bd8563f8 (diff)
downloadurllib3-dabe77d7d3f69c1b961826dabac28eda86699024.tar.gz
Sort imports with 'isort'
Diffstat (limited to 'dummyserver/testcase.py')
-rw-r--r--dummyserver/testcase.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/dummyserver/testcase.py b/dummyserver/testcase.py
index 5a54922d..6a49e36c 100644
--- a/dummyserver/testcase.py
+++ b/dummyserver/testcase.py
@@ -4,17 +4,16 @@ from contextlib import contextmanager
import pytest
from tornado import ioloop, web
-from urllib3.connection import HTTPConnection
-
+from dummyserver.handlers import TestingApp
+from dummyserver.proxy import ProxyHandler
from dummyserver.server import (
- SocketServerThread,
- run_tornado_app,
- run_loop_in_thread,
DEFAULT_CERTS,
HAS_IPV6,
+ SocketServerThread,
+ run_loop_in_thread,
+ run_tornado_app,
)
-from dummyserver.handlers import TestingApp
-from dummyserver.proxy import ProxyHandler
+from urllib3.connection import HTTPConnection
def consume_socket(sock, chunks=65536):