Skip to content

Commit 10f9230

Browse files
committed
Improve formatting yet again
1 parent 60b89f3 commit 10f9230

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/gen-universal-table.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@
3232
if not line:
3333
break
3434
headers[j - 1].append(line)
35-
headers.append (["UnicodeData.txt does not have a header."])
35+
headers.append(["UnicodeData.txt does not have a header."])
3636

3737
data = [{} for _ in files]
3838
values = [{} for _ in files]
39-
for i, f in enumerate (files):
39+
for i, f in enumerate(files):
4040
for line in f:
4141

42-
j = line.find ('#')
42+
j = line.find('#')
4343
if j >= 0:
4444
line = line[:j]
4545

4646
fields = [x.strip() for x in line.split(';')]
4747
if len(fields) == 1:
4848
continue
4949

50-
uu = fields[0].split ('..')
50+
uu = fields[0].split('..')
5151
start = int(uu[0], 16)
5252
if len(uu) == 1:
5353
end = start

0 commit comments

Comments
 (0)