Explicit slowsearch parameter in constructor.

pull/16/head
fukusuket 2022-05-26 23:32:58 +09:00
parent 82086989d2
commit e20fe796c3
1 changed files with 3 additions and 2 deletions

View File

@ -12,9 +12,10 @@ from pymispwarninglists import WarningLists
def init(): def init():
''' '''
Template to get the module started Template to get the module started.
If set slow_search=True, uses the most appropriate search method. Can be slower.
''' '''
return WarningLists() return WarningLists(slow_search=False)
if __name__ == '__main__': if __name__ == '__main__':