We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8a789 commit eac1c50Copy full SHA for eac1c50
pystac/item_collection.py
@@ -82,8 +82,8 @@ class ItemCollection(Collection[pystac.Item]):
82
>>> item_collection_1 = ItemCollection(items=[item_1, item_2])
83
>>> item_collection_2 = ItemCollection(items=[item_2, item_3])
84
>>> combined = item_collection_1 + item_collection_2
85
- >>> assert len(combined) == 3
86
- # If an item is present in both ItemCollections it will only be added once
+ >>> assert len(combined) == 4
+ # If an item is present in both ItemCollections it will occur twice
87
"""
88
89
items: List[pystac.Item]
0 commit comments