diff options
| author | Jakub Wilk <jwilk@jwilk.net> | 2025-03-24 08:55:42 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2025-03-29 12:32:09 -0300 |
| commit | d8ebc9cf80b6d10e72a01d7b0afa42aab6b31264 (patch) | |
| tree | de65714b17797446591ba79380fd0fc642ad37fa /bindings/python-cffi/notmuch2 | |
| parent | dfc800c26e7bee1e42a8d96c300508ed9d5a109b (diff) | |
python: make IndexOptions public
Database docstrings refer to IndexOptions,
so the latter should be public too.
Diffstat (limited to 'bindings/python-cffi/notmuch2')
| -rw-r--r-- | bindings/python-cffi/notmuch2/_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python-cffi/notmuch2/_database.py b/bindings/python-cffi/notmuch2/_database.py index d7485b4d..d2671fdf 100644 --- a/bindings/python-cffi/notmuch2/_database.py +++ b/bindings/python-cffi/notmuch2/_database.py @@ -15,7 +15,7 @@ import notmuch2._query as querymod import notmuch2._tags as tags -__all__ = ['Database', 'AtomicContext', 'DbRevision'] +__all__ = ['Database', 'AtomicContext', 'DbRevision', 'IndexOptions'] def _config_pathname(): |
