From 398fb1e566bbc79563d82cb91cc1c1a511e7e17f Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Thu, 23 May 2019 11:56:04 -0500 Subject: [PATCH] Alternate wasn't loading extra words --- dictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionary.py b/dictionary.py index e5eebd0..48fc29c 100644 --- a/dictionary.py +++ b/dictionary.py @@ -22,7 +22,7 @@ def do_operation(bound_method, *args, **kwargs): default_load_future = EXECUTOR.submit( do_operation, DEFAULT.load_dictionary, english) alternate_load_future = EXECUTOR.submit( - do_operation, ALTERNATE.load_text_file, english) + do_operation, ALTERNATE.load_text_file, extra_words) class Dictionary: