From 35f7f14b5274ded89bc9afdfbb954b3b6d282f87 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Thu, 22 Oct 2015 10:58:23 -0700 Subject: [PATCH] flake --- tchannel/thrift/request.py | 1 + tchannel/thrift/rw.py | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/tchannel/thrift/request.py b/tchannel/thrift/request.py index 41d3ce0b..10e74d39 100644 --- a/tchannel/thrift/request.py +++ b/tchannel/thrift/request.py @@ -20,6 +20,7 @@ from __future__ import absolute_import, print_function, unicode_literals +from tchannel.errors import ValueExpectedError from tchannel.serializer.thrift import ThriftSerializer diff --git a/tchannel/thrift/rw.py b/tchannel/thrift/rw.py index 1f9e4aec..e3eea0fa 100644 --- a/tchannel/thrift/rw.py +++ b/tchannel/thrift/rw.py @@ -30,7 +30,6 @@ from tchannel.status import OK, FAILED from tchannel.errors import OneWayNotSupportedError -from tchannel.errors import ValueExpectedError from tchannel.response import Response, response_from_mixed from tchannel.serializer.thrift import ThriftSerializer @@ -366,5 +365,3 @@ def handle(request): handle.__name__ = function.spec.name return handle - -