Skip to content

Commit

Permalink
Applies code linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
craigpaul committed Sep 14, 2021
1 parent 2d2cc5c commit 92e78b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/wait-time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export default class WaitTime extends Conditional implements WaitTimeResource {
}

public async get(): Promise<any> {
let params: WaitTimeParameters = {};
const params: WaitTimeParameters = {};
let location: string | number = '';

if (this.location != null) {
location = this.location;
location = this.location;
}

if (this.limit) {
Expand Down

0 comments on commit 92e78b9

Please sign in to comment.