We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b9b78 commit 26efef7Copy full SHA for 26efef7
2 files changed
python/lib/sift_py/yaml/utils.py
@@ -5,7 +5,7 @@
5
import yaml
6
7
try:
8
- import ryml # type: ignore[import-not-found]
+ import ryml
9
10
_HAS_RYML = True
11
except ImportError:
python/pyproject.toml
@@ -320,6 +320,10 @@ ignore_errors = true
320
[[tool.mypy.overrides]]
321
module = "ruamel"
322
ignore_missing_imports = true
323
+
324
+[[tool.mypy.overrides]]
325
+module = "ryml"
326
+ignore_missing_imports = true
327
ignore_errors = true
328
329
0 commit comments