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 3dcb9d3 commit 057bfc2Copy full SHA for 057bfc2
hcloud/actions/client.py
@@ -197,7 +197,7 @@ def wait_for_function(
197
:raises: ActionFailedException when an Action failed.
198
:return: List of succeeded Actions.
199
"""
200
- running: list[BoundAction] = list(actions)
+ running: list[BoundAction] = actions.copy() # type: ignore[assignment]
201
completed: list[BoundAction] = []
202
203
retries = 0
0 commit comments