From c48c5b4e1d3b7353103ca6d564eb2717d6d24dc4 Mon Sep 17 00:00:00 2001 From: Tim Cappalli Date: Wed, 21 Feb 2024 10:12:53 -0500 Subject: [PATCH] Update update-from-mds.yml Override MDS values with local aaguid.json. Original PR #34 (thank you @opotonniee) --- .github/workflows/update-from-mds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-from-mds.yml b/.github/workflows/update-from-mds.yml index 00ec45c..98ffdf6 100644 --- a/.github/workflows/update-from-mds.yml +++ b/.github/workflows/update-from-mds.yml @@ -74,7 +74,7 @@ jobs: aaguid = json.load(aaguid_file) # Combine custom aaguid.json with data from MDS - result = {**aaguid, **result_dict} + result = {**result_dict, **aaguid} # Write combined result to file with open('combined_aaguid.json', 'w') as output_file: