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']] [[], [], [], ['fish'], [], [], ['blue', 'red']]
""" """
with gzip.open(filename, 'rb') as infile: with gzip.open(filename, 'rb') as infile:
got = msgpack.load(infile, encoding='utf-8') return msgpack.load(infile, encoding='utf-8')
return got
def available_languages(wordlist='combined'): def available_languages(wordlist='combined'):