Cleaned pyFlakes issues with unused imports

pull/588/head
Przemek Wirkus 2014-10-21 13:18:22 +01:00
parent 3850ddc8c1
commit 5bca0ab3d1
9 changed files with 3 additions and 11 deletions

View File

@ -16,7 +16,6 @@ limitations under the License.
"""
import re
from sys import stdout
from host_test import DefaultTest

View File

@ -16,7 +16,7 @@ limitations under the License.
"""
from host_test import DefaultTest
from sys import stdout
class DevNullTest(DefaultTest):

View File

@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import re
from sys import stdout
from host_test import DefaultTest

View File

@ -16,7 +16,6 @@ limitations under the License.
"""
import re
from sys import stdout
from host_test import DefaultTest
from time import time, strftime, gmtime

View File

@ -17,10 +17,10 @@ limitations under the License.
import re
import random
from sys import stdout
from time import time
from host_test import DefaultTest
class StdioTest(DefaultTest):
PATTERN_INT_VALUE = "Your value was: (-?\d+)"
re_detect_int_value = re.compile(PATTERN_INT_VALUE)

View File

@ -18,7 +18,6 @@ limitations under the License.
import sys
import socket
from sys import stdout
from time import sleep
from host_test import Test
from SocketServer import BaseRequestHandler, TCPServer

View File

@ -20,9 +20,9 @@ import sys
import uuid
import socket
from sys import stdout
from time import time
from host_test import DefaultTest
class TCPEchoServerTest(DefaultTest):
ECHO_SERVER_ADDRESS = ""
ECHO_PORT = 0

View File

@ -15,12 +15,10 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import re
import sys
import uuid
from sys import stdout
from time import time
from host_test import DefaultTest
from socket import socket, AF_INET, SOCK_DGRAM

View File

@ -16,7 +16,6 @@ limitations under the License.
"""
from time import time
from sys import stdout
from host_test import DefaultTest