自定义词典强制模式不起作用

import hanlp
HanLP = hanlp.load(“component”)
text = “海航haihangMU3456航班”
HanLP.dict_force = {“haihang”}
print(HanLP([text])[“tok/fine”])
结果 [[‘海航’, ‘haihangMU3456’, ‘航班’]]
请问为什么强制模式加自定义词典,分词分不开?