Skip to content

Commit 72a13b9

Browse files
authored
fix(Client): fix prettier complaints
1 parent 3f5ec00 commit 72a13b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class Client extends EventEmitter {
9898

9999
public async connect(): Promise<Client> {
100100
if (this.connected) throw new Error("Client has already been connected.");
101-
101+
102102
await this.client.connect();
103103
this.connected = true;
104104

@@ -120,7 +120,7 @@ export class Client extends EventEmitter {
120120

121121
public async end(): Promise<Client> {
122122
if (!this.connected) throw new Error("Client has not been connected yet.");
123-
123+
124124
await this.client.end();
125125
this.connected = false;
126126

0 commit comments

Comments
 (0)