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 0a0046a commit 3dcb9d3Copy full SHA for 3dcb9d3
hcloud/actions/client.py
@@ -141,7 +141,6 @@ class ActionsClient(ResourceActionsClient):
141
def __init__(self, client: Client):
142
super().__init__(client, None)
143
144
- # TODO: Consider making public?
145
def _get_list_by_ids(self, ids: list[int]) -> list[BoundAction]:
146
"""
147
Get a list of Actions by their IDs.
@@ -168,7 +167,6 @@ def _get_list_by_ids(self, ids: list[int]) -> list[BoundAction]:
168
167
for action_data in response["actions"]
169
)
170
171
- # TODO: Should this be moved to the the wait function?
172
if len(ids) != len(actions):
173
found_ids = [a.id for a in actions]
174
not_found_ids = list(set(ids) - set(found_ids))
0 commit comments