removed uncessary if statement

This commit is contained in:
Joshua Chin 2015-07-17 15:14:06 -04:00
parent d988b1b42e
commit 620becb7e8

View File

@ -66,11 +66,10 @@ def freqs_to_cBpack(in_filename, out_filename, cutoff=-600):
cBpack = []
for token, freq in freqs.items():
cB = round(math.log10(freq) * 100)
if cB >= cutoff:
neg_cB = -cB
while neg_cB >= len(cBpack):
cBpack.append([])
cBpack[neg_cB].append(token)
neg_cB = -cB
while neg_cB >= len(cBpack):
cBpack.append([])
cBpack[neg_cB].append(token)
for sublist in cBpack:
sublist.sort()