Skip to content

Commit e769f25

Browse files
committed
s: fix output not being m'd in convenience fallback case
1 parent ff90521 commit e769f25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unpythonic/mathseq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def nofterms(desc, elt): # return total number of terms in sequence or False
358358

359359
# analyze the specification
360360
if Ellipsis not in spec: # convenience fallback
361-
return (x for x in spec)
361+
return m(x for x in spec)
362362
else:
363363
*spec, last = spec
364364
if last is Ellipsis:

0 commit comments

Comments
 (0)