Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dblommesteijn committed Apr 21, 2023
1 parent e24412c commit ba8cfc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export class HomebridgeGoodWeInverter implements DynamicPlatformPlugin {
// this is used to track restored cached accessories
public readonly accessories: PlatformAccessory[] = [];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
private loginResponseBody: any = {};
private retry: any = {};

constructor(
Expand Down Expand Up @@ -103,6 +102,7 @@ export class HomebridgeGoodWeInverter implements DynamicPlatformPlugin {
this.log.debug('cmd:response:stdout', stdout);
this.log.debug('cmd:response:stderr', stderr);
output = stdout;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch(e: any) {
// NOTE: not sure why it raises an exception and exitcode == 1
this.log.debug('cmd:error', e.stdout);
Expand Down

0 comments on commit ba8cfc2

Please sign in to comment.