Skip to content

Commit dc48e2c

Browse files
committed
Changed tags parameter for list() and find() to optional
1 parent 9c98a12 commit dc48e2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

splitapiclient/microclients/split_microclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def __init__(self, http_client):
106106
'''
107107
self._http_client = http_client
108108

109-
def list(self, workspace_id, tags):
109+
def list(self, workspace_id, tags = []):
110110
'''
111111
Returns a list of Split objects.
112112
@@ -137,7 +137,7 @@ def list(self, workspace_id, tags):
137137
break
138138
return [Split(item, workspace_id, self._http_client) for item in final_list]
139139

140-
def find(self, split_name, workspace_id, tags):
140+
def find(self, split_name, workspace_id, tags = []):
141141
'''
142142
Find Split in workspace objects.
143143

0 commit comments

Comments
 (0)