Skip to content

Commit

Permalink
Add missing ArrowArrayProvider to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
spenczar committed Aug 8, 2023
1 parent bf5c36e commit b72288e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/source/api/tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,7 @@ Type Information Helpers
.. autodata:: AttributeValueType

Represents the permitted set of values to be passed in when setting a Table attribute value.

.. autoclass:: ArrowArrayProvider

.. automethod:: __arrow_array__
3 changes: 2 additions & 1 deletion quivr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
ValidationError,
)
from .linkage import Linkage, MultiKeyLinkage, combine_linkages, combine_multilinkages
from .tables import AnyTable, AttributeValueType, DataSourceType, Table
from .tables import AnyTable, AttributeValueType, DataSourceType, Table, ArrowArrayProvider
from .validators import Validator, and_, eq, ge, gt, is_in, le, lt

__all__ = [
Expand Down Expand Up @@ -125,4 +125,5 @@
"le",
"lt",
"InvalidColumnDataError",
"ArrowArrayProvider",
]

0 comments on commit b72288e

Please sign in to comment.