Skip to content

Commit f81ded9

Browse files
committed
Fix python file formatting
1 parent 47d8b7e commit f81ded9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/unicode.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -252,12 +252,12 @@ def emit_enums(f, script_list, extension_list, longforms):
252252

253253
# Generate implementation for the `Script`
254254
generate_script_impl(f)
255-
256-
255+
256+
257257
def generate_script_impl(f):
258258
"""Generates an `impl Script { ... }` section with all the required functions"""
259259

260-
# Open `impl Script` section.
260+
# Open `impl Script` section.
261261
f.write("""impl Script {
262262
""")
263263

@@ -322,7 +322,7 @@ def generate_script_impl(f):
322322
f.write(""" }
323323
}
324324
""")
325-
325+
326326
# Generate impl of `for_integer`
327327
f.write("""
328328
#[inline]
@@ -335,7 +335,7 @@ def generate_script_impl(f):
335335
}
336336
}
337337
""")
338-
338+
339339
# Close `impl Script` section
340340
f.write("""
341341
}
@@ -399,5 +399,5 @@ def extension_name(ext):
399399
is_pub=False , pfun=lambda x: "(%s,%s,%s)" % (escape_char(x[0]), escape_char(x[1]), extension_name(x[2])))
400400

401401
# emit_table(rf, "FOObar", properties)
402-
403-
rf.write(ending)
402+
403+
rf.write(ending)

0 commit comments

Comments
 (0)