git » alan.git » commit acb004d

Remove translate-from-lang items from default blueprint to avoid duplicate stems

author Alan Dipert
2025-12-04 04:49:53 UTC
committer Alan Dipert
2025-12-04 04:49:53 UTC
parent 01d1ae574e19ec06bebb4e77cc5432496b1146aa

Remove translate-from-lang items from default blueprint to avoid duplicate stems

test_blueprint.py +3 -3

diff --git a/test_blueprint.py b/test_blueprint.py
index 70f7659..f6a48d8 100644
--- a/test_blueprint.py
+++ b/test_blueprint.py
@@ -66,7 +66,7 @@ def get_default_concepts() -> Dict[str, Concept]:
 # Item types.
 EXEMPLAR_COMPREHENSION = "EXEMPLAR_COMPREHENSION"
 TRANSLATE_TO_LANG = "TRANSLATE_TO_LANG"
-TRANSLATE_FROM_LANG = "TRANSLATE_FROM_LANG"
+TRANSLATE_FROM_LANG = "TRANSLATE_FROM_LANG"  # kept for future use; not used in default blueprint
 RULE_APPLICATION = "RULE_APPLICATION"
 STACKED_RULES = "STACKED_RULES"
 
@@ -105,7 +105,7 @@ def get_default_blueprint() -> TestBlueprint:
                 "NOUN_NUMBER_MARKING",
                 "NOUN_GENDER_MARKING",
             ],
-            item_types=[TRANSLATE_TO_LANG, TRANSLATE_FROM_LANG, RULE_APPLICATION],
+            item_types=[TRANSLATE_TO_LANG, RULE_APPLICATION],
             num_items=10,
         ),
         SectionBlueprint(
@@ -119,7 +119,7 @@ def get_default_blueprint() -> TestBlueprint:
                 "NOUN_CASE_MARKING",
                 "VERB_TENSE_MARKING",
             ],
-            item_types=[TRANSLATE_FROM_LANG, RULE_APPLICATION],
+            item_types=[RULE_APPLICATION, TRANSLATE_TO_LANG],
             num_items=8,
         ),
         SectionBlueprint(