Final CI fix: remove unused response variable in check_connection
Some checks failed
CI / test (push) Failing after 12s

This commit is contained in:
2026-02-04 18:24:15 +00:00
parent cf6a1a838b
commit 1ebc45808e

View File

@@ -24,7 +24,7 @@ class OllamaClient:
True if connection successful, False otherwise. True if connection successful, False otherwise.
""" """
try: try:
response: ListResponse = ollama_lib.list() ollama_lib.list()
return True return True
except Exception: except Exception:
return False return False