fix: bad for loop

This commit is contained in:
Derrick Hammer 2023-07-07 09:58:11 -04:00
parent 636c974e80
commit ecb2990572
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ export class Config {
}, {});
// eslint-disable-next-line @typescript-eslint/no-for-in-array
for (const key of argPairs) {
for (const key in argPairs) {
objectPath.set(this.data, key, argPairs[key]);
}
}