Skip to content

Commit dc327d3

Browse files
committed
Fixed bug in search_stacks with single * on kwargs
1 parent f2a7f43 commit dc327d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackdio/client/stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_stack(self, stack_id):
4343

4444

4545
@endpoint("stacks/")
46-
def search_stacks(self, *kwargs):
46+
def search_stacks(self, **kwargs):
4747
"""Search for stacks that match the given criteria"""
4848
return self._get(endpoint, params=kwargs, jsonify=True)['results']
4949

0 commit comments

Comments
 (0)