fix: harden search validation and release v0.7.1

This commit is contained in:
jackwener
2026-03-13 01:04:29 +08:00
parent dc832f2ee2
commit 7d1b519c85
13 changed files with 203 additions and 490 deletions

View File

@@ -10,7 +10,10 @@ import json
import logging
import re
import urllib.parse
from typing import Dict
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Any, Dict, Optional # noqa: F401
from .exceptions import QueryIdError