* Fix cluster initialization

This commit is contained in:
Matthew Honnibal 2015-05-31 15:21:28 +02:00
parent 5e99ff94c8
commit c8a553fe91
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ def _read_clusters(loc):
clusters[word.lower()] = cluster
if word.title() not in clusters:
clusters[word.title()] = cluster
if word.upper() not in clusters
if word.upper() not in clusters:
clusters[word.upper()] = cluster
return clusters