Skip to content

Commit

Permalink
avoid <> in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
AstrakhantsevaAA committed Sep 19, 2023
1 parent 241bd87 commit cb619e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dlt/destinations/weaviate/weaviate_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def weaviate_adapter(
Examples:
>>> data = [{"name": "Alice", "description": "Software developer"}]
>>> weaviate_adapter(data, vectorize="description", tokenization={"description": "word"})
<DltResource with hints applied>
[DltResource with hints applied]
"""
# wrap `data` in a resource if not an instance already
resource: DltResource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ https://weaviate.io/developers/weaviate/modules/retriever-vectorizer-modules

>>> data = [{"name": "Alice", "description": "Software developer"}]
>>> weaviate_adapter(data, vectorize="description", tokenization={"description": "word"})
<DltResource with hints applied>
[DltResource with hints applied]

0 comments on commit cb619e5

Please sign in to comment.