Skip to content

Commit a0bc732

Browse files
author
Jelle Slowack
committed
Fix codacy warnings
1 parent 26792f7 commit a0bc732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ class ServerlessDynamodbLocal {
304304
if (migration.Tags) {
305305
delete migration.Tags;
306306
}
307-
if (migration.BillingMode === 'PAY_PER_REQUEST') {
307+
if (migration.BillingMode === "PAY_PER_REQUEST") {
308308
delete migration.BillingMode;
309309

310310
const defaultProvisioning = {
@@ -313,7 +313,7 @@ class ServerlessDynamodbLocal {
313313
};
314314
migration.ProvisionedThroughput = defaultProvisioning;
315315
if (migration.GlobalSecondaryIndexes) {
316-
migration.GlobalSecondaryIndexes.forEach(gsi => {
316+
migration.GlobalSecondaryIndexes.forEach((gsi) => {
317317
gsi.ProvisionedThroughput = defaultProvisioning;
318318
});
319319
}

0 commit comments

Comments
 (0)