From a588bee0fa718deb2786b1f48d7d615ab3e215c7 Mon Sep 17 00:00:00 2001 From: Kim Yang Date: Sat, 13 Dec 2025 12:35:07 +0800 Subject: [PATCH] make lint happy --- httpx/_models.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/httpx/_models.py b/httpx/_models.py index 1acf9bef..67cb771c 100644 --- a/httpx/_models.py +++ b/httpx/_models.py @@ -841,9 +841,7 @@ class Response: self._raise_status_error(request) - def raise_for_excepted_status( - self, expected: typing.Sequence[int] - ) -> Response: + def raise_for_excepted_status(self, expected: typing.Sequence[int]) -> Response: """ Raise the `HTTPStatusError` unless the status code is in the `expected` list.