Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Dec 14, 2020
1 parent ca4c212 commit a0b4c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export class Transmission implements TorrentClient {
// return torrent;
// }

async request<T extends any>(method: string, args: any = {}): Promise<Response<T>> {
async request<T>(method: string, args: any = {}): Promise<Response<T>> {
if (!this.sessionId && method !== 'session-get') {
await this.getSession();
}
Expand Down

0 comments on commit a0b4c9e

Please sign in to comment.