Skip to content

Commit 23b3607

Browse files
authored
fix: invalid attribute in placement group (#258)
The actions client attribute name is `actions`
1 parent c8253f3 commit 23b3607

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hcloud/placement_groups/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def create(
158158

159159
action = None
160160
if response.get("action") is not None:
161-
action = BoundAction(self._client.action, response["action"])
161+
action = BoundAction(self._client.actions, response["action"])
162162

163163
result = CreatePlacementGroupResponse(
164164
placement_group=BoundPlacementGroup(self, response["placement_group"]),

0 commit comments

Comments
 (0)