Skip to content

Commit 2fe21c0

Browse files
committed
fix: Fix remaining examples and main function
1 parent b604542 commit 2fe21c0

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

deepl/__main__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ def action_text(
7272
**kwargs,
7373
):
7474
"""Action function for the text command."""
75-
output_list = translator.translate_text(**kwargs)
75+
translation = translator.translate_text(**kwargs)
76+
output_list = (
77+
translation if isinstance(translation, List) else [translation]
78+
)
7679
for output in output_list:
7780
if show_detected_source:
7881
print(f"Detected source language: {output.detected_source_lang}")

examples/json/translate_json.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
import json
77
import logging
88
from typing import Any, Callable, List, Tuple
9+
from collections.abc import Iterable
10+
11+
from deepl.translator import TextResult
912

1013

1114
def batch_translate(
@@ -23,6 +26,7 @@ def batch_translate(
2326
results = translator.translate_text(
2427
inputs, target_lang=target_lang, **kwargs
2528
)
29+
assert isinstance(results, list)
2630
for result, handler in zip(results, handlers):
2731
handler(result)
2832

@@ -38,6 +42,7 @@ def parse_json_for_translation(
3842
translation candidates list
3943
"""
4044

45+
keys: Iterable = []
4146
if type(obj) is dict:
4247
keys = obj.keys()
4348
elif type(obj) is list:
@@ -80,7 +85,9 @@ def translate_json(
8085
obj = [obj]
8186

8287
# Find all text in the JSON that is to be translated
83-
translation_candidates = []
88+
translation_candidates: List[
89+
Tuple[str, Callable[[deepl.TextResult], None]]
90+
] = []
8491
parse_json_for_translation(obj, translation_candidates)
8592
logger.info(
8693
f"Found {len(translation_candidates)} strings to be translated"

examples/mustache/mustache.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

5+
from deepl.translator import TextResult
56
from html_parsing import TagReplacerHTMLParser
67
import deepl
78
import logging
@@ -117,6 +118,7 @@ def translate_mustache(
117118
result = translator.translate_text(
118119
placeholder_xml, target_lang=target_lang, tag_handling="xml", **kwargs
119120
)
121+
assert isinstance(result, TextResult)
120122
logger.info("Translated XML: %s", result.text)
121123

122124
# Reinsert the extracted Mustache tags in the translated XML

0 commit comments

Comments
 (0)