From 4fa8512d999a5ed3f9f883ca98bca5acb0394c44 Mon Sep 17 00:00:00 2001 From: drbh Date: Wed, 19 Feb 2025 19:41:17 -0500 Subject: [PATCH] fix: ruff lint remove unused import --- clients/python/tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/tests/test_client.py b/clients/python/tests/test_client.py index f6ffc89d..0c702c63 100644 --- a/clients/python/tests/test_client.py +++ b/clients/python/tests/test_client.py @@ -2,7 +2,7 @@ import pytest from text_generation import Client, AsyncClient from text_generation.errors import NotFoundError, ValidationError -from text_generation.types import FinishReason, InputToken +from text_generation.types import FinishReason def test_generate(llama_7b_url, hf_headers):