Fix build error

This commit is contained in:
wqy
2024-01-13 15:02:22 +08:00
parent 37f5210ab9
commit 44edeffad9
25 changed files with 43 additions and 40 deletions

View File

@@ -129,7 +129,7 @@ def inp_in_mixing(line: str) -> str:
value = float(tokens[3]) if num_without_desc >= 4 else None
value = value if value != None else 'null'
return f"insert into mixing (tank, model, value) values ('{tank}', '{model}', {value});"
return str(f"insert into mixing (tank, model, value) values ('{tank}', '{model}', {value});")
def inp_out_mixing(name: str) -> list[str]: