Skip to content
Snippets Groups Projects
Commit d99432a0 authored by Janne Alatalo's avatar Janne Alatalo :neutral_face:
Browse files

Fix linter warning for unused variable '_'

parent c797e143
No related branches found
No related tags found
No related merge requests found
Pipeline #744961 passed
......@@ -132,6 +132,7 @@ export function connect_lam_ws(api_url, update_state) {
if (!data) {
return
}
/*eslint no-unused-vars: "off"*/
let [_, stationIdStr, sensorIdStr] = topic.split('/');
const stationId = parseInt(stationIdStr, 10);
const sensorId = parseInt(sensorIdStr, 10);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment