From 269100eac16dacfe0aea63258cbe4f5e875d5b6b Mon Sep 17 00:00:00 2001 From: Harsha Narayana Date: Thu, 14 Mar 2019 22:48:47 +0530 Subject: [PATCH] format: fix linter issue causing travis build failures (fix #1514) (#1515) Signed-off-by: Harsha Narayana --- sanic/testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/testing.py b/sanic/testing.py index 2e2f60f0..2ed52bbb 100644 --- a/sanic/testing.py +++ b/sanic/testing.py @@ -1,9 +1,9 @@ from json import JSONDecodeError +from socket import socket from sanic.exceptions import MethodNotSupported from sanic.log import logger from sanic.response import text -from socket import socket HOST = "127.0.0.1"