removed temporary variable

Former-commit-id: 053e4da3e6
This commit is contained in:
Joshua Chin 2015-06-17 12:16:02 -04:00
parent 2dc3d82a98
commit 76c504bdd2

View File

@ -82,8 +82,7 @@ def read_dBpack(filename):
[[], [], [], ['fish'], [], [], ['blue', 'red']]
"""
with gzip.open(filename, 'rb') as infile:
got = msgpack.load(infile, encoding='utf-8')
return got
return msgpack.load(infile, encoding='utf-8')
def available_languages(wordlist='combined'):