Skip to content

Commit

Permalink
Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sajmonr committed Feb 17, 2023
1 parent 3adcada commit 9d11b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class HubspacePlatform implements DynamicPlatformPlugin {
constructor(
public readonly log: Logger,
public readonly config: PlatformConfig,
public readonly api: API,
public readonly api: API
) {
// Init token service as singleton
TokenService.init(this.config.username, this.config.password);
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @param value Value to check
* @returns True if value is null or undefined otherwise false
*/
export function isNullOrUndefined(value: any): boolean{
export function isNullOrUndefined(value: unknown): boolean{
return value === undefined || value === null;
}

Expand Down

0 comments on commit 9d11b7e

Please sign in to comment.