From 7e06e07e4f37b5ee9a524cde718cc49555f268ce Mon Sep 17 00:00:00 2001 From: tyler Date: Tue, 19 May 2026 03:08:57 -0400 Subject: [PATCH] moved an import line to the top --- ollama_answers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ollama_answers.py b/ollama_answers.py index 5f5a5cb..2aa4d76 100644 --- a/ollama_answers.py +++ b/ollama_answers.py @@ -1,4 +1,4 @@ -import json, os, logging, base64, time, hashlib, re, http.client, ssl, concurrent.futures, threading, math +import json, os, logging, base64, typing, time, hashlib, re, http.client, ssl, concurrent.futures, threading, math from collections import Counter from urllib.parse import urlparse try: @@ -1346,8 +1346,6 @@ INTENT_CONFIGS = { }, } - -import typing if typing.TYPE_CHECKING: from searx.search import SearchWithPlugins from searx.extended_types import SXNG_Request