Skip to content

Commit

Permalink
Fix: Parameters name mismatch (#71)
Browse files Browse the repository at this point in the history
Co-authored-by: Gerald Walter Irsiegler <gerald@Irsiegler-P14s>
  • Loading branch information
GeraldIr and Gerald Walter Irsiegler authored Oct 19, 2023
1 parent 9bd2b3f commit 53b3aae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openeo_pg_parser_networkx/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def generate_function_from_nodes(nodes):
for node_type, node_name, operand1, operand2 in nodes:
if node_type == "array_element":
value = ast.Subscript(
value=ast.Name(id="parameter", ctx=ast.Load()),
value=ast.Name(id="parameters", ctx=ast.Load()),
slice=ast.Index(value=ast.Num(n=int(operand1))),
ctx=ast.Load(),
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openeo-pg-parser-networkx"
version = "2023.10.7"
version = "2023.10.8"

description = "Parse OpenEO process graphs from JSON to traversible Python objects."
authors = ["Lukas Weidenholzer <[email protected]>", "Sean Hoyal <[email protected]>", "Valentina Hutter <[email protected]>", "Gerald Irsiegler <[email protected]>"]
Expand Down

0 comments on commit 53b3aae

Please sign in to comment.