Skip to content

Commit 16207b4

Browse files
committed
lint fixes
1 parent 989c814 commit 16207b4

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/http/HTTP.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import InvalidAPIKeyError from '../exceptions/InvalidAPIKeyError';
99
import MissingAPIKeyError from '../exceptions/MissingAPIKeyError';
1010
import { FortniteAPIResponseData } from './httpStructs';
1111

12-
let nmb = 0;
13-
1412
class HTTP {
1513
public client: Client;
1614
public axios: AxiosInstance;
@@ -36,7 +34,6 @@ class HTTP {
3634
}
3735

3836
public async fetch(url: string, params?: any): Promise<FortniteAPIResponseData> {
39-
console.log(``)
4037
try {
4138
const response = await this.axios({
4239
url,
@@ -73,6 +70,7 @@ class HTTP {
7370
throw e;
7471
}
7572
}
73+
7674
public async fetchStats(url: string, params?: any): Promise<FortniteAPIResponseData> {
7775
try {
7876
const response = await this.statsAxios.get(url, {

0 commit comments

Comments
 (0)