Changing location of reduce import to not use six.moves

pull/4420/head
James Cammarata 2016-03-01 17:06:46 -05:00
parent b559d0e6ee
commit 9acb5aa176
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ try:
reduce
except NameError:
# Python 3
from six.moves import reduce
from functools import reduce
try:
NUMBERTYPES = (int, long, float)