Fix typo
This commit is contained in:
@@ -109,7 +109,7 @@ def inp_in_status(section: list[str]) -> ChangeSet:
|
|||||||
return cs
|
return cs
|
||||||
|
|
||||||
|
|
||||||
def inp_out_valve(name: str) -> list[str]:
|
def inp_out_status(name: str) -> list[str]:
|
||||||
lines = []
|
lines = []
|
||||||
objs = read_all(name, 'select * from status')
|
objs = read_all(name, 'select * from status')
|
||||||
for obj in objs:
|
for obj in objs:
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ def delete_pattern(name: str, cs: ChangeSet) -> ChangeSet:
|
|||||||
return execute_command(name, delete_pattern_cache(name, cs))
|
return execute_command(name, delete_pattern_cache(name, cs))
|
||||||
|
|
||||||
|
|
||||||
def inp_in_demand(section: list[str]) -> ChangeSet:
|
def inp_in_pattern(section: list[str]) -> ChangeSet:
|
||||||
descs = {}
|
descs = {}
|
||||||
patterns: dict[str, list[float]] = {}
|
patterns: dict[str, list[float]] = {}
|
||||||
|
|
||||||
@@ -119,7 +119,7 @@ def inp_in_demand(section: list[str]) -> ChangeSet:
|
|||||||
return cs
|
return cs
|
||||||
|
|
||||||
|
|
||||||
def inp_out_demand(name: str) -> list[str]:
|
def inp_out_pattern(name: str) -> list[str]:
|
||||||
lines = []
|
lines = []
|
||||||
objs = read_all(name, f"select * from patterns order by _order")
|
objs = read_all(name, f"select * from patterns order by _order")
|
||||||
for obj in objs:
|
for obj in objs:
|
||||||
|
|||||||
Reference in New Issue
Block a user