Skip to content

Commit

Permalink
Fixed eslint warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
XHunter74 committed Apr 22, 2024
1 parent d937eab commit 2a7f384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class GreeHvac extends utils.Adapter {
}

nameToId(pName) {
return (pName || '').replace(adapter.FORBIDDEN_CHARS, '_');
return (pName || '').replace(adapter.FORBIDDEN_CHARS, '_'); // eslint-disable-line no-undef
}

validateIPList(ipList) {
Expand Down

0 comments on commit 2a7f384

Please sign in to comment.