From bb45c5c1b86a8e75bb6686a3ae69cf5507eb8113 Mon Sep 17 00:00:00 2001 From: Bart Piotrowski Date: Mon, 17 Jun 2024 17:04:32 +0200 Subject: [PATCH] Update .github/actions/merge/entrypoint.py Co-authored-by: bbhtt --- .github/actions/merge/entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/merge/entrypoint.py b/.github/actions/merge/entrypoint.py index 79192ae..81e99b7 100755 --- a/.github/actions/merge/entrypoint.py +++ b/.github/actions/merge/entrypoint.py @@ -97,7 +97,7 @@ def detect_appid(dirname): appid = manifest["id"] else: parser = Json.Parser() - if parser.load_from_file(parser, filename): + if parser.load_from_file(filename): root_node = parser.get_root() if root_node.get_node_type() == Json.NodeType.OBJECT: json_object = root_node.get_object()