Skip to content

Commit

Permalink
fix waiter.create_waiter_with_client()
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Aug 17, 2024
1 parent aada51a commit 280d7b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changes

2.13.3 (2024-08-18)
^^^^^^^^^^^^^^^^^^^
* fix ``create_waiter_with_client()``

2.13.2 (2024-07-18)
^^^^^^^^^^^^^^^^^^^
Expand Down
4 changes: 3 additions & 1 deletion aiobotocore/waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ async def wait(self, **kwargs):
)

# Create the new waiter class
documented_waiter_cls = type(waiter_class_name, (Waiter,), {'wait': wait})
documented_waiter_cls = type(
waiter_class_name, (AIOWaiter,), {'wait': wait}
)

# Return an instance of the new waiter class.
return documented_waiter_cls(
Expand Down

0 comments on commit 280d7b7

Please sign in to comment.