Skip to content

Commit 3ab5474

Browse files
authored
Merge pull request #72 from sebastic/numba
Fix pytest failure without numba.
2 parents 923ba34 + 8c82de0 commit 3ab5474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy_groupies/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828

2929
def _impl_name(impl):
30-
if not impl:
30+
if not impl or type(impl).__name__ == 'NotSetType':
3131
return
3232
return impl.__name__.rsplit("aggregate_", 1)[1].rsplit("_", 1)[-1]
3333

0 commit comments

Comments
 (0)