Fix dump key work error

This commit is contained in:
WQY\qiong
2022-11-25 23:35:29 +08:00
parent 181ecf0cd5
commit e13bb53b98

View File

@@ -223,14 +223,14 @@ def inp_out_reaction(name: str) -> list[str]:
objs = read_all(name, f"select * from reactions_pipe_bulk")
for obj in objs:
pipe = obj['pipe']
bulk = obj['bulk']
lines.append(f'BULK {pipe} {bulk}')
value = obj['value']
lines.append(f'BULK {pipe} {value}')
objs = read_all(name, f"select * from reactions_pipe_wall")
for obj in objs:
pipe = obj['pipe']
wall = obj['wall']
lines.append(f'WALL {pipe} {wall}')
value = obj['value']
lines.append(f'WALL {pipe} {value}')
objs = read_all(name, f"select * from reactions_tank")
for obj in objs: