From 53d9d59572f03b94594f7d2b63c625ebfd994977 Mon Sep 17 00:00:00 2001 From: Chris Edwards Date: Fri, 13 Jan 2017 16:05:02 -0500 Subject: [PATCH] lint fix --- src/handlers/location.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/location.js b/src/handlers/location.js index d254720..9c690a8 100644 --- a/src/handlers/location.js +++ b/src/handlers/location.js @@ -16,7 +16,7 @@ function handler(event, context, callback) { callback(null, response({ message }, 400)); } else { getPhoneNumber(name) - .then(data => { + .then((data) => { callback(null, response(data)); }) .catch(({ statusCode, message }) => {