Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rickhanlonii committed Mar 22, 2024
1 parent 64fb52d commit 3d8472e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/flags/flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ if (argv.csv) {
`Flag name, ${FLAG_COLUMNS.join(', ')}`,
...Object.keys(table).map(flag => {
const row = sorted[flag];
return `${flag}, ${FLAG_COLUMNS.map(flag => row[flag]).join(', ')}`;
return `${flag}, ${FLAG_COLUMNS.map(col => row[col]).join(', ')}`;
}),
];
fs.writeFile('./flags.csv', csvRows.join('\n'), function (err) {
Expand Down

0 comments on commit 3d8472e

Please sign in to comment.