Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
troykessler committed Apr 3, 2024
1 parent bcaebd4 commit 2b1c503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/kysor/src/commands/valaccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ valaccounts
const home = path.join(options.home || USER_HOME, KYSOR_DIR);

const files = fs.readdirSync(path.join(home, "valaccounts"));
for (let file of files) {
for (const file of files) {
console.log(file.replace(".toml", ""));
}
} catch (err) {
Expand Down

0 comments on commit 2b1c503

Please sign in to comment.