We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59df6c6 commit 7cb3c25Copy full SHA for 7cb3c25
pyproject.toml
@@ -38,3 +38,4 @@ python_version = "3.11"
38
strict = true
39
files = "python/cocoindex"
40
exclude = "(\\.venv|site-packages)"
41
+disable_error_code = ["unused-ignore"]
python/cocoindex/functions.py
@@ -11,7 +11,7 @@
11
12
# Check if sentence_transformers is available
13
try:
14
- import sentence_transformers
+ import sentence_transformers # type: ignore
15
16
_SENTENCE_TRANSFORMERS_AVAILABLE = True
17
except ImportError:
0 commit comments