Skip to content

Commit ec20280

Browse files
committed
修正 bulk_parse() 參數順序錯誤
1 parent 26c7009 commit ec20280

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ArticutAPI/MP_ArticutAPI.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ def bulk_parse(self, inputLIST, level="lv2", userDefinedDICT={}, chemicalBOOL=Tr
183183
resultAppend = resultLIST.append
184184
#print(inputLIST2)
185185
for i, inputLIST in enumerate(inputLIST2):
186-
resultAppend(pool.apply_async(self._run, (i, inputLIST, level, chemicalBOOL, userDefinedDICT, openDataPlaceBOOL, wikiDataBOOL, indexWithPOS, timeRef, pinyin,),))
186+
resultAppend(pool.apply_async(self._run, (i, inputLIST, level,
187+
userDefinedDICT, chemicalBOOL, openDataPlaceBOOL, wikiDataBOOL, indexWithPOS, timeRef, pinyin,),))
187188
pool.close()
188189
pool.join()
189190

0 commit comments

Comments
 (0)