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 e5c8fd8 commit 6bf2b5dCopy full SHA for 6bf2b5d
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