Skip to content

Commit 2de6476

Browse files
author
Clark Perkins
committed
Removed search method
1 parent 786c340 commit 2de6476

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

stackdio/client/snapshot.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,13 @@ def create_snapshot(self, snapshot):
2626
return snapshot
2727

2828
@get('cloud/snapshots/', paginate=True)
29-
def list_snapshots(self):
29+
def list_snapshots(self, **kwargs):
3030
pass
3131

3232
@get('cloud/snapshots/{snapshot_id}/')
3333
def get_snapshot(self, snapshot_id):
3434
pass
3535

36-
@get('cloud/snapshots/', paginate=True)
37-
def search_snapshots(self, **kwargs):
38-
pass
39-
4036
@delete('cloud/snapshots/{snapshot_id}/')
4137
def delete_snapshot(self, snapshot_id):
4238
pass

0 commit comments

Comments
 (0)