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 a6b9bde commit a7fef9cCopy full SHA for a7fef9c
convert_hf_to_gguf_update.py
@@ -146,8 +146,8 @@ def fugashi_check():
146
Check if fugashi and Japanese dictionary are installed and can be imported.
147
"""
148
try:
149
- import fugashi
150
- tagger = fugashi.Tagger()
+ import fugashi # pyright: ignore[reportMissingImports]
+ fugashi.Tagger()
151
except ImportError:
152
raise ImportError(
153
"fugashi is missing, install it via: pip install 'fugashi[unidic-lite]'"
0 commit comments