We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d615c8f commit a050024Copy full SHA for a050024
source_py2/test_python_toolbox/test_nifty_collections/test_bagging.py
@@ -169,7 +169,7 @@ def test_comparison(self):
169
assert not smaller_item >= item
170
assert not smaller_item > item
171
assert smaller_item != item
172
- not_smaller_items = [item for item in next(zip(*hierarchy)) if
+ not_smaller_items = [item for item in zip(*hierarchy)[0] if
173
item not in smaller_items]
174
for not_smaller_item in not_smaller_items:
175
assert not item < smaller_item
0 commit comments