Typo fix added missing ":" after if condition (#1419)

This commit is contained in:
Ranjan Singh 2024-07-22 14:29:05 +05:30 коммит произвёл GitHub
Родитель d46bacb20b
Коммит d85ba6e5a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -173,7 +173,7 @@ class TransformersRecognizer(EntityRecognizer):
for res in ner_results:
res["entity_group"] = self.__check_label_transformer(res["entity_group"])
if not res["entity_group"] or res["entity_group"] not in entities
if not res["entity_group"] or res["entity_group"] not in entities:
continue
if res["entity_group"] == self.id_entity_name: