From 71802a8064dd1c52c15ec90b73a6155765e33336 Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Tue, 10 Mar 2026 01:11:37 +0800 Subject: [PATCH] style: remove unused List import from llm_model_configs.py Remove unused typing.List import flagged by ruff F401. Co-Authored-By: Yue Guobin --- gns3server/schemas/controller/llm_model_configs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/schemas/controller/llm_model_configs.py b/gns3server/schemas/controller/llm_model_configs.py index 7b7617edc..810bdfe9e 100644 --- a/gns3server/schemas/controller/llm_model_configs.py +++ b/gns3server/schemas/controller/llm_model_configs.py @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from typing import Optional, List, Literal +from typing import Optional, Literal from pydantic import BaseModel, Field, ConfigDict from uuid import UUID