Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix linting
Signed-off-by: hao-xu5 <hxu44@apple.com>
  • Loading branch information
hao-xu5 committed Oct 20, 2025
commit b9541a1e21f1311e69a9aaacce1533cb9bfe2857
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,39 @@ Submodules
feast.infra.compute\_engines.local.backends.base module
-------------------------------------------------------

.. automodule:: feast.infra.compute_engines.local.backends.base
.. automodule:: feast.infra.compute_engines.backends.base
:members:
:undoc-members:
:show-inheritance:

feast.infra.compute\_engines.local.backends.factory module
----------------------------------------------------------

.. automodule:: feast.infra.compute_engines.local.backends.factory
.. automodule:: feast.infra.compute_engines.backends.factory
:members:
:undoc-members:
:show-inheritance:

feast.infra.compute\_engines.local.backends.pandas\_backend module
------------------------------------------------------------------

.. automodule:: feast.infra.compute_engines.local.backends.pandas_backend
.. automodule:: feast.infra.compute_engines.backends.pandas_backend
:members:
:undoc-members:
:show-inheritance:

feast.infra.compute\_engines.local.backends.polars\_backend module
------------------------------------------------------------------

.. automodule:: feast.infra.compute_engines.local.backends.polars_backend
.. automodule:: feast.infra.compute_engines.backends.polars_backend
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

.. automodule:: feast.infra.compute_engines.local.backends
.. automodule:: feast.infra.compute_engines.backends
:members:
:undoc-members:
:show-inheritance:
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Subpackages
.. toctree::
:maxdepth: 4

feast.infra.compute_engines.local.backends
feast.infra.compute_engines.backends

Submodules
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from feast.infra.compute_engines.dag.context import ColumnInfo, ExecutionContext
from feast.infra.compute_engines.local.arrow_table_value import ArrowTableValue
from feast.infra.compute_engines.local.backends.pandas_backend import PandasBackend
from feast.infra.compute_engines.backends.pandas_backend import PandasBackend
from feast.infra.compute_engines.local.nodes import (
LocalAggregationNode,
LocalDedupNode,
Expand Down
Loading