Skip to content

Commit 7b66d29

Browse files
Remove unnecessary assignment
1 parent 543a482 commit 7b66d29

File tree

1 file changed

+1
-2
lines changed
  • lib/configuration/variables/sources/instance-dependent

1 file changed

+1
-2
lines changed

lib/configuration/variables/sources/instance-dependent/param.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,8 @@ module.exports = (serverlessInstance) => {
6363

6464
const params = await resolveParams(stage, serverlessInstance);
6565
const value = params[address] ? params[address].value : null;
66-
const result = { value };
6766

68-
return result;
67+
return { value };
6968
},
7069
};
7170
};

0 commit comments

Comments
 (0)