Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lint NNX pop method docs in graph.py #4440

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions flax/nnx/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ def pop(
def pop(
node, *filters: filterlib.Filter
) -> tp.Union[GraphState, tuple[GraphState, ...]]:
"""Pop one or more :class:`Variable` types from the graph node.
"""Pop one or more :class:`flax.nnx.Variable` types from the graph node.

Example usage::

Expand Down Expand Up @@ -1555,9 +1555,9 @@ def pop(

Args:
node: A graph node object.
*filters: One or more :class:`Variable` objects to filter by.
*filters: One or more :class:`flax.nnx.Variable` objects to filter by.
Returns:
The popped :class:`State` containing the :class:`Variable`
The popped :class:`flax.nnx.State` containing the :class:`flax.nnx.Variable`
objects that were filtered for.
"""
if len(filters) == 0:
Expand Down
Loading