mirror of https://github.com/explosion/spaCy.git
Merge pull request #732 from danielhers/patch-1
Avoid "True if ... else False"
This commit is contained in:
commit
5693cea4d6
|
@ -305,7 +305,7 @@ cdef class Vocab:
|
||||||
'''
|
'''
|
||||||
key = hash_string(string)
|
key = hash_string(string)
|
||||||
lex = self._by_hash.get(key)
|
lex = self._by_hash.get(key)
|
||||||
return True if lex is not NULL else False
|
return lex is not NULL
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
'''Iterate over the lexemes in the vocabulary.
|
'''Iterate over the lexemes in the vocabulary.
|
||||||
|
|
Loading…
Reference in New Issue