Skip to content

Commit 3dcb9d3

Browse files
committed
chore: remove comments
1 parent 0a0046a commit 3dcb9d3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

hcloud/actions/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ class ActionsClient(ResourceActionsClient):
141141
def __init__(self, client: Client):
142142
super().__init__(client, None)
143143

144-
# TODO: Consider making public?
145144
def _get_list_by_ids(self, ids: list[int]) -> list[BoundAction]:
146145
"""
147146
Get a list of Actions by their IDs.
@@ -168,7 +167,6 @@ def _get_list_by_ids(self, ids: list[int]) -> list[BoundAction]:
168167
for action_data in response["actions"]
169168
)
170169

171-
# TODO: Should this be moved to the the wait function?
172170
if len(ids) != len(actions):
173171
found_ids = [a.id for a in actions]
174172
not_found_ids = list(set(ids) - set(found_ids))

0 commit comments

Comments
 (0)