ci/github-script/teams: use consistent style

These are style-only changes, that are not enforced via tooling - but
used mostly consistently in the other github-script files.
This commit is contained in:
Wolfgang Walther
2025-10-28 11:53:23 +01:00
parent 81005856bb
commit 3df31aa255
2 changed files with 11 additions and 9 deletions

View File

@@ -91,7 +91,6 @@ program
.argument('[outFile]', 'Path to the output file (Example: github-teams.json). If not set, prints to stdout')
.action(async (owner, repo, outFile, options) => {
const getTeams = (await import('./get-teams.js')).default
// TODO: Refactor this file so we don't need to pass a PR
await run(getTeams, owner, repo, undefined, { ...options, outFile })
})