From 9fc7fe7f322a6f7e9863ff214f8b781285625f64 Mon Sep 17 00:00:00 2001 From: fominykhandrei <70645657+fominykhandrei@users.noreply.github.com> Date: Tue, 30 Nov 2021 20:46:54 +0300 Subject: [PATCH] Fix build for Python versions <3.9 (#855) Co-authored-by: Andrei Fominykh --- scripts/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/meta.py b/scripts/meta.py index 1741a4ad..c3c4cac9 100755 --- a/scripts/meta.py +++ b/scripts/meta.py @@ -49,7 +49,7 @@ class Main(App): for path in self.args.input[0]: with open(path, mode="r") as file: dict = json.loads(file.read()) - full |= dict + full.update(dict) print(json.dumps(full, indent=4)) return 0