Skip to content

Commit 5701c0b

Browse files
committed
Fix newlines to make linter happy
1 parent 70bdb56 commit 5701c0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/_py_grapheme_db.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,4 +342,3 @@
342342
(0x1E8D0,0x1E8D6,3),(0x1E944,0x1E94A,3),(0x1F3FB,0x1F3FF,3),(0xE0020,0xE007F,3),
343343
(0xE0100,0xE01EF,3),
344344
)
345-

Tools/unicode/makeunicodedata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,10 +790,12 @@ def makegraphemedata(unicode, trace):
790790
fprint("# Grapheme_Cluster_Break ranges")
791791
fprint("# (excludes LV/LVT, computed via Hangul syllable arithmetic)")
792792
_write_ranges(fprint, "GCB_RANGES", gcb_ranges)
793+
fprint()
793794

794795
# ExtPict ranges
795796
fprint("# Extended_Pictographic ranges")
796797
_write_ranges(fprint, "EXT_PICT_RANGES", ep_ranges, has_value=False)
798+
fprint()
797799

798800
# InCB ranges
799801
fprint("# Indic_Conjunct_Break ranges")
@@ -829,7 +831,6 @@ def _write_ranges(fprint, name, ranges, has_value=True):
829831
parts = ["(0x%04X,0x%04X)" % (s, e) for s, e, _v in chunk]
830832
fprint(" %s," % ",".join(parts))
831833
fprint(")")
832-
fprint()
833834

834835

835836
# --------------------------------------------------------------------

0 commit comments

Comments
 (0)