Fixes linter issues

This commit is contained in:
freearhey
2025-07-29 04:31:55 +03:00
parent 09b365ca73
commit 307cfe4b99
5 changed files with 7 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ async function main() {
let errors = new Collection()
let warnings = new Collection()
let streamsGroupedByFilepath = streams.groupBy((stream: Stream) => stream.getFilepath())
const streamsGroupedByFilepath = streams.groupBy((stream: Stream) => stream.getFilepath())
for (const filepath of streamsGroupedByFilepath.keys()) {
const streams = streamsGroupedByFilepath.get(filepath)
if (!streams) continue