From 870ba3dcabdd236d876342927408abbda52e9239 Mon Sep 17 00:00:00 2001 From: Jerin Philip Date: Tue, 15 Feb 2022 15:25:39 +0000 Subject: [PATCH] print alignments for now --- bindings/python/test_all.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/test_all.py b/bindings/python/test_all.py index dda114220..c214c3654 100644 --- a/bindings/python/test_all.py +++ b/bindings/python/test_all.py @@ -24,6 +24,7 @@ def test_basic(): responses = service.translate(model, VectorString([source]), options) for response in responses: print(response.target.text, end="") + print(response.alignments) print()