Token.dict_combine 加入词典后报错 list index out of range

import hanlp
from hanlp.components.mtl.multi_task_learning import MultiTaskLearning
from hanlp.components.mtl.tasks.tok.tag_tok import TaggingTokenization

HanLP: MultiTaskLearning = hanlp.load(hanlp.pretrained.mtl.CLOSE_TOK_POS_NER_SRL_DEP_SDP_CON_ELECTRA_SMALL_ZH)
tok: TaggingTokenization = HanLP[‘tok/fine’]

tok.dict_force = tok.dict_combine = None
print(f’不挂词典:\n{HanLP(“新能源车,新能源车”)[“tok/fine”]}’)

tok.dict_combine ={‘新能源车’}
print(f’合并模式:\n{HanLP(“新能源车,新能源车”)[“tok/fine”]}’)

无法复现:https://play.hanlp.ml/run/issue-dict

pip install hanlp -U