Skip to content

Commit 5ab1f59

Browse files
committed
chore: minor linting adjustments
1 parent 6354187 commit 5ab1f59

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default class NodePyATVInstance {
7474
} catch (error) {
7575
throw new Error(
7676
`Unable to scan for devices: ${String(error).replace('Error: ', '')}`,
77-
{ cause: error }
77+
{ cause: error },
7878
);
7979
}
8080
}

src/lib/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ export async function request<O extends NodePyATVRequestOptions>(
501501
const msg = `Unable to parse result ${requestId} json: ${error}`;
502502
debug(requestId, msg, options);
503503
throw new Error(msg, {
504-
cause: error
504+
cause: error,
505505
});
506506
}
507507
}

0 commit comments

Comments
 (0)