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

@@ -78,7 +78,7 @@ def inp_in_emitter(line: str) -> str:
junction = str(tokens[0])
coefficient = float(tokens[1])
return f"insert into emitters (junction, coefficient) values ('{junction}', {coefficient});"
return str(f"insert into emitters (junction, coefficient) values ('{junction}', {coefficient});")
def inp_out_emitter(name: str) -> list[str]: