fix: semicolon after each statement

This commit is contained in:
phga 2021-10-20 18:47:17 +02:00
parent 7505b0a990
commit 86637c3615

View File

@ -59,6 +59,6 @@ with open(out_file_path, "w") as of:
cols += f'"{indices[i]}"'
vals += f'{wrap_types(values[i])}'
# INSERT INTO $DB.$TABLE ($COL1, $COL2, ...) VALUES ($VAL1, $VAL2, ...)
of.write(f'INSERT INTO {db_table} ({cols}) VALUES ({vals})\n')
of.write(f'INSERT INTO {db_table} ({cols}) VALUES ({vals});\n')
count += 1
print(f'Created {count} INSERT statements for sheet "{sheet}"\n')