update comment

This commit is contained in:
2025-03-21 13:11:03 -03:00
parent 36b97b1291
commit 85deafc08f
8 changed files with 82 additions and 314 deletions

View File

@@ -57,7 +57,7 @@ def ComposeKey(
Example
-------
>>> Key(('abc', 'xyz'), prefix='examples', delimiter='#')
>>> ComposeKey(('abc', 'xyz'), prefix='examples', delimiter='#')
'examples#abc#xyz'
"""

View File

@@ -85,7 +85,7 @@ def test_collection_get_item(
)
assert data_notfound == {}
# This item was added from seeds
# This data was added from seeds
data = collect.get_item(
KeyPair(
pk='5OxmMjL-ujoR5IMGegQz',
@@ -140,7 +140,7 @@ def test_collection_delete_item(
):
collect = DynamoDBCollection(dynamodb_persistence_layer)
# This item was added from seeds
# This data was added from seeds
assert collect.delete_item(
KeyPair(
'5OxmMjL-ujoR5IMGegQz',
@@ -155,7 +155,7 @@ def test_collection_get_items(
):
collect = DynamoDBCollection(dynamodb_persistence_layer)
# This item was added from seeds
# This data was added from seeds
data = collect.get_items(
PartitionKey(
ComposeKey('5OxmMjL-ujoR5IMGegQz', prefix='logs'),