Skip to content

Commit 4c62739

Browse files
committed
unit test fix (i)
1 parent 5424120 commit 4c62739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openml/setups/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def list_setups(flow=None, tag=None, setup=None, offset=None, size=None):
102102
api_call += "/offset/%d" % int(offset)
103103
if size is not None:
104104
api_call += "/limit/%d" % int(size)
105-
if size is not None:
105+
if setup is not None:
106106
api_call += "/setup/%s" % ','.join([str(int(i)) for i in setup])
107107
if flow is not None:
108108
api_call += "/flow/%s" % flow

0 commit comments

Comments
 (0)