From a719fe62a96f50167fec0f40c2a28ecad57c51d3 Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Fri, 23 Jun 2023 22:31:25 -0700 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index a368987fb7c..2eec7386aa5 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -34,7 +34,7 @@ jobs: const setsData = fs.readFileSync(path.join('Utils', 'mtg-sets-data.txt'), 'utf8') .split('\n') - .map(line => {[line.split('|')[1]]: line.split('|')[0]}); + .map(line => ({[line.split('|')[1]]: line.split('|')[0]})); console.log(setsData);