-
Notifications
You must be signed in to change notification settings - Fork 238
Summary display problem #1282
Copy link
Copy link
Closed
Description
Sometimes doc.summary() doesn't display all of the fields.
Example:
from docarray.documents.helper import create_doc
MyDoc = create_doc('MyDoc', num=(int, ...), text=(str, ...))
doc = MyDoc(num=12, text='txt')
doc.summary()In this case, field num is not displayed even though it exists.
╭───────────────────────┬──────────────╮
│ Attribute │ Value │
├───────────────────────┼──────────────┤
│ text: str │ txt │
╰───────────────────────┴──────────────╯Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done