From 92e78b9fa139c679405e0fdb83a2e62e8807956a Mon Sep 17 00:00:00 2001 From: Craig Paul Date: Mon, 13 Sep 2021 20:24:18 -0600 Subject: [PATCH] Applies code linting fixes --- src/resources/wait-time.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/wait-time.ts b/src/resources/wait-time.ts index 0bdee64..1aeff39 100644 --- a/src/resources/wait-time.ts +++ b/src/resources/wait-time.ts @@ -30,11 +30,11 @@ export default class WaitTime extends Conditional implements WaitTimeResource { } public async get(): Promise { - let params: WaitTimeParameters = {}; + const params: WaitTimeParameters = {}; let location: string | number = ''; if (this.location != null) { - location = this.location; + location = this.location; } if (this.limit) {