From 9e47e2bf4f50900489a7e27ebb182e726d92a135 Mon Sep 17 00:00:00 2001 From: Martin <49105846+Fosowl@users.noreply.github.com> Date: Tue, 1 Apr 2025 19:42:16 +0200 Subject: [PATCH] Update sources/llm_provider.py to remove duplicate typing Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- sources/llm_provider.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sources/llm_provider.py b/sources/llm_provider.py index 5724d89..2b5af9a 100644 --- a/sources/llm_provider.py +++ b/sources/llm_provider.py @@ -11,8 +11,7 @@ import platform from dotenv import load_dotenv, set_key from openai import OpenAI from huggingface_hub import InferenceClient -from typing import List, Tuple, Type, Dict, Tuple - +from typing import List, Tuple, Type, Dict from sources.utility import pretty_print, animate_thinking class Provider: