fix linting error in autogenerated code

This commit is contained in:
Emil Tsalapatis 2024-11-06 12:20:11 -08:00
parent 2f174db96f
commit f088540647

View File

@ -86,7 +86,7 @@ def gen_enums_rs():
f.write("#[allow(non_snake_case)]\n")
f.write("pub struct Enums {\n")
for _, symbol in enums:
f.write(" pub {} : u64,\n".format(symbol))
f.write(" pub {}: u64,\n".format(symbol))
f.write("}\n\n")
# Step two: Create the enum singleton we expose to the schedulers