Skip to content

Commit edbc27d

Browse files
committed
Fix tidy errors
1 parent a580421 commit edbc27d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libcore/unicode/unicode.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,8 @@ def emit_bool_trie(f, name, t_data, is_pub=True):
460460
f.write("\n ],\n")
461461

462462
# 0x10000..0x110000 trie
463-
(mid, r6) = compute_trie(chunks[0x10000 // chunk_size : 0x110000 // chunk_size], 64 // chunk_size)
463+
(mid, r6) = compute_trie(chunks[0x10000 // chunk_size : 0x110000 // chunk_size],
464+
64 // chunk_size)
464465
(r4, r5) = compute_trie(mid, 64)
465466
f.write(" r4: [\n")
466467
data = ",".join(str(node) for node in r4)
@@ -626,7 +627,7 @@ def main():
626627
"Cased", "Case_Ignorable", "Grapheme_Extend"]
627628
derived = load_properties(get_path(UnicodeFiles.DERIVED_CORE_PROPERTIES), want_derived)
628629

629-
# TODO scripts not used?
630+
# FIXME scripts not used?
630631
scripts = load_properties(get_path(UnicodeFiles.SCRIPTS), [])
631632
props = load_properties(get_path(UnicodeFiles.PROPS),
632633
["White_Space", "Join_Control", "Noncharacter_Code_Point",

0 commit comments

Comments
 (0)