From 1ebc45808e54b4d2acfb98081996ce741c6377f2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:24:15 +0000 Subject: [PATCH] Final CI fix: remove unused response variable in check_connection --- app/src/git_commit_generator/ollama_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/git_commit_generator/ollama_client.py b/app/src/git_commit_generator/ollama_client.py index 38f7a12..1c621b1 100644 --- a/app/src/git_commit_generator/ollama_client.py +++ b/app/src/git_commit_generator/ollama_client.py @@ -24,7 +24,7 @@ class OllamaClient: True if connection successful, False otherwise. """ try: - response: ListResponse = ollama_lib.list() + ollama_lib.list() return True except Exception: return False