Skip to content

Commit 057bfc2

Browse files
committed
fix: linting
1 parent 3dcb9d3 commit 057bfc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hcloud/actions/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def wait_for_function(
197197
:raises: ActionFailedException when an Action failed.
198198
:return: List of succeeded Actions.
199199
"""
200-
running: list[BoundAction] = list(actions)
200+
running: list[BoundAction] = actions.copy() # type: ignore[assignment]
201201
completed: list[BoundAction] = []
202202

203203
retries = 0

0 commit comments

Comments
 (0)