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

@@ -99,7 +99,7 @@ def inp_in_vertex(line: str) -> str:
link = tokens[0]
x = float(tokens[1])
y = float(tokens[2])
return f"insert into vertices (link, x, y) values ('{link}', {x}, {y});"
return str(f"insert into vertices (link, x, y) values ('{link}', {x}, {y});")
def inp_out_vertex(name: str) -> list[str]: