Skip to content

Commit

Permalink
fix(aws.dynamodb): fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Nov 5, 2024
1 parent e583194 commit 49edf61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capepy/aws/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Table(Boto3Object):
Attributes:
name: the name of the table
table: the table object retrieved with the boto3 dybamodb resource
table: the table object retrieved with the boto3 dynamodb resource
"""

def __init__(self, table_name):
Expand All @@ -21,7 +21,7 @@ def __init__(self, table_name):
table_name: The name of the table to retrieve from DynamoDB.
"""
super().__init__()
ddb = self.get_resource("dybamodb", region_name=os.getenv("DDB_REGION"))
ddb = self.get_resource("dynamodb", region_name=os.getenv("DDB_REGION"))
self.name = table_name

try:
Expand Down

0 comments on commit 49edf61

Please sign in to comment.