Skip to content

Commit 7236528

Browse files
committed
for unit test
1 parent 82fb7b2 commit 7236528

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openml/datasets/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def get_features_by_type(self, data_type, exclude=None, exclude_ignore_attribute
321321
assert type(self.row_id_attribute) is str, "row id attribute should be a str"
322322
if exclude is not None:
323323
assert type(exclude) is list, "Exclude should be a list"
324-
assert all(isinstance(elem, str) for elem in exclude), "Exclude should be a list of strings"
324+
# assert all(isinstance(elem, str) for elem in exclude), "Exclude should be a list of strings"
325325
to_exclude = []
326326
if exclude is not None:
327327
to_exclude.extend(exclude)

0 commit comments

Comments
 (0)