From e20fe796c3e8d12c59cf899e8d701144f8e2903d Mon Sep 17 00:00:00 2001 From: fukusuket Date: Thu, 26 May 2022 23:32:58 +0900 Subject: [PATCH] Explicit slowsearch parameter in constructor. --- example_domaincheck.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example_domaincheck.py b/example_domaincheck.py index 8835976..efe2c04 100644 --- a/example_domaincheck.py +++ b/example_domaincheck.py @@ -12,9 +12,10 @@ from pymispwarninglists import WarningLists 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__':