Skip to content

Commit c590385

Browse files
authored
kwarg added (#127)
1 parent e23c8a7 commit c590385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithmia/algorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def versions(self, limit=None, marker=None, published=None, callable=None):
127127
kwargs["callable"] = str(c).lower() if str(c) in bools else c
128128
# Get Algorithm versions
129129
url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/versions'
130-
response = self.client.getJsonHelper(url)
130+
response = self.client.getJsonHelper(url, **kwargs)
131131
return response
132132

133133
# Compile an algorithm

0 commit comments

Comments
 (0)