Skip to content

Commit 59f1d7c

Browse files
committed
Remove trailing comma
1 parent 0c89745 commit 59f1d7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def breast_cancer():
4646
def make_whas500():
4747
"""Load and standardize WHAS500 data."""
4848
def _make_whas500(with_mean=True, with_std=True, to_numeric=False):
49-
x, y, = load_whas500()
49+
x, y = load_whas500()
5050
if with_mean:
5151
x = standardize(x, with_std=with_std)
5252
if to_numeric:

0 commit comments

Comments
 (0)