Avoid "True if ... else False"

This commit is contained in:
Daniel Hershcovich 2017-01-11 11:18:22 +02:00 committed by GitHub
parent 3e6e1f0251
commit 8e603cc917
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ cdef class Vocab:
'''
key = hash_string(string)
lex = self._by_hash.get(key)
return True if lex is not NULL else False
return lex is not NULL
def __iter__(self):
'''Iterate over the lexemes in the vocabulary.