We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08fc93 commit 79a3796Copy full SHA for 79a3796
py/makeqstrdata.py
@@ -102,10 +102,6 @@ def translate(translation_file, i18ns):
102
103
def compute_huffman_coding(translations, qstrs, compression_filename):
104
all_strings = [x[1] for x in translations]
105
-
106
- # go through each qstr and print it out
107
- for _, _, qstr in qstrs.values():
108
- all_strings.append(qstr)
109
all_strings_concat = "".join(all_strings)
110
counts = collections.Counter(all_strings_concat)
111
cb = huffman.codebook(counts.items())
0 commit comments