Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docling_core/experimental/serializer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def serialize_hyperlink(
@abstractmethod
def get_parts(
self,
node: Optional[NodeItem] = None,
item: Optional[NodeItem] = None,
**kwargs,
) -> list[SerializationResult]:
"""Get the components to be combined for serializing this node."""
Expand All @@ -222,6 +222,6 @@ def serialize_captions(
...

@abstractmethod
def get_excluded_refs(self) -> list[str]:
def get_excluded_refs(self, **kwargs) -> list[str]:
"""Get references to excluded items."""
...
Loading