From 3046a1eb541f543dc4bd24f079e7908a502e765c Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Tue, 28 Feb 2017 16:08:48 -0700 Subject: [PATCH] remove redundant exception declaration --- requests/exceptions.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/requests/exceptions.py b/requests/exceptions.py index 82797664..0aeb43fc 100644 --- a/requests/exceptions.py +++ b/requests/exceptions.py @@ -85,10 +85,6 @@ class InvalidHeader(RequestException, ValueError): """The header value provided was somehow invalid.""" -class InvalidHeader(RequestException, ValueError): - """The header value provided was somehow invalid.""" - - class ChunkedEncodingError(RequestException): """The server declared chunked encoding but sent an invalid chunk."""