Skip to content
Merged
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: 5 additions & 1 deletion docarray/base_doc/doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,11 @@ def dict(
) -> 'DictStrAny':
"""
Generate a dictionary representation of the model, optionally specifying
which fields to include or exclude.
which fields to include or exclude. The method also includes the attributes
and their values when attributes are objects of class types which can include
nesting. This method differs from the `dict()` method of python which only
prints the methods and attributes of the object and only the type of the
attribute when attributes are types of other class.

"""

Expand Down