diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-04-16 08:45:04 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-04-16 08:45:04 +0200 |
commit | 056404e4656328acf2259d3d238b871965bfc4c3 (patch) | |
tree | 4272aec4a620088b2b2b7b24e4fd1e2c6c77bfd2 /pyproject.toml | |
parent | e6346108506656b7a7d1514b7b5219f82022cac8 (diff) |
Ignore mypy missing imports for xapian.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3437f23..a4e055e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,3 +58,9 @@ Changelog = "https://git.sr.ht/~valhalla/lesana/tree/master/item/CHANGELOG.rst" [tool.setuptools_scm] version_file = "lesana/_version.py" + +[[tool.mypy.overrides]] +module = [ + "xapian", +] +ignore_missing_imports = true |