From 606bf297f4d51021a25232a66fc4d0daa9603f40 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 8 Mar 2021 17:03:20 -0500 Subject: [PATCH] Fix lint --- types/url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/url.js b/types/url.js index 77c1afac..c9f0a314 100644 --- a/types/url.js +++ b/types/url.js @@ -11,7 +11,7 @@ module.exports = class UrlType extends ArgumentType { return Boolean(validURL.isWebUri(value)); } - async parse(value) { + parse(value) { return new URL(value); } };