Skip to content

Commit 09e138b

Browse files
committed
remove unneeded returns
1 parent 37f9c32 commit 09e138b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

verda/clusters/_clusters.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ def action(self, id_list: list[str] | str, action: str) -> None:
217217
payload = {'actions': [{'id': id, 'action': action} for id in id_list]}
218218

219219
self._http_client.put(CLUSTERS_ENDPOINT, json=payload)
220-
return
221220

222221
def delete(self, cluster_id: str) -> None:
223222
"""Deletes a cluster.
@@ -226,7 +225,6 @@ def delete(self, cluster_id: str) -> None:
226225
cluster_id: ID of the cluster to delete.
227226
"""
228227
self.action(cluster_id, 'delete')
229-
return
230228

231229
def is_available(
232230
self,

0 commit comments

Comments
 (0)