Skip to content

Commit

Permalink
Add FIXME comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Feb 7, 2024
1 parent 45c83ff commit c6a4b29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dynamodb_autoincrement.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def _get_item(self, *, TableName, **kwargs):
return self.dynamodb.Table(TableName).get_item(**kwargs)

def _query(self, *, TableName, **kwargs):
# FIXME: DynamoDB resource does not have put_item method; emulate it
return self.dynamodb.Table(TableName).query(**kwargs)

def put(self, item: DynamoDBItem):
Expand Down

0 comments on commit c6a4b29

Please sign in to comment.