From f9448bd3187ef66545851d8cab109e290235815f Mon Sep 17 00:00:00 2001 From: "Hauzer S. Lee" Date: Sun, 20 Oct 2024 15:57:59 +0800 Subject: [PATCH] chore: black --- llmpa/clients/http.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llmpa/clients/http.py b/llmpa/clients/http.py index 5746255..1da789d 100644 --- a/llmpa/clients/http.py +++ b/llmpa/clients/http.py @@ -2,6 +2,7 @@ from requests.exceptions import HTTPError, Timeout, RequestException from typing import Optional, List + class HttpClient: def __init__( self, @@ -121,5 +122,3 @@ def delete( extra_headers=extra_headers, timeout=timeout, ) - -