Format the python matching internal linter

This commit is contained in:
Nick Gerleman
2022-12-23 05:20:51 -08:00
parent 51a2a3856e
commit 676fa1fbf3
3 changed files with 48 additions and 1 deletions

View File

@@ -260,7 +260,8 @@ with open(root + "/javascript/sources/YGEnums.d.ts", "w") as f:
base = value[1] + 1
else:
f.write(
"export const %s_%s: %d;\n" % (to_java_upper(name), to_java_upper(value), base)
"export const %s_%s: %d;\n"
% (to_java_upper(name), to_java_upper(value), base)
)
base += 1