mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
Fix 'toupper()' -> 'upper()'
This commit is contained in:
parent
7a46792376
commit
dbc276e3b2
|
@ -506,7 +506,7 @@ cdef class Doc:
|
|||
py_attr_ids = [py_attr_ids]
|
||||
|
||||
# Allow strings, e.g. 'lemma' or 'LEMMA'
|
||||
py_attr_ids = [(IDS[id_.toupper()] if hasattr(id_, 'upper') else id_)
|
||||
py_attr_ids = [(IDS[id_.upper()] if hasattr(id_, 'upper') else id_)
|
||||
for id_ in py_attr_ids]
|
||||
# Make an array from the attributes --- otherwise inner loop would be Python
|
||||
# dict iteration.
|
||||
|
|
Loading…
Reference in New Issue
Block a user