We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa08859 commit 3ac18b5Copy full SHA for 3ac18b5
splitio/push/sse.py
@@ -2,7 +2,6 @@
2
import logging
3
import socket
4
import abc
5
-import pytest
6
from collections import namedtuple
7
from http.client import HTTPConnection, HTTPSConnection
8
from urllib.parse import urlparse
tests/push/test_sse.py
@@ -3,12 +3,10 @@
import time
import threading
import pytest
-from concurrent.futures import ProcessPoolExecutor
from splitio.push.sse import SSEClient, SSEEvent, SSEClientAsync
9
-from splitio.optional.loaders import asyncio, aiohttp
+from splitio.optional.loaders import asyncio
10
from tests.helpers.mockserver import SSEMockServer
11
-from tests.helpers.async_http_server import AsyncHTTPServer
12
13
class SSEClientTests(object):
14
"""SSEClient test cases."""
0 commit comments