From e0749dd67b813c36724ac61946ff114395db032f Mon Sep 17 00:00:00 2001 From: SAIKAT KARMAKAR Date: Sun, 3 Dec 2023 21:24:55 +0000 Subject: [PATCH] typo fixed in the comment --- src/ape/api/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ape/api/providers.py b/src/ape/api/providers.py index 42c00057f1..66b035cf1a 100644 --- a/src/ape/api/providers.py +++ b/src/ape/api/providers.py @@ -753,7 +753,7 @@ def _sanitize_web3_url(msg: str) -> str: prefix = parts[0].strip() rest = parts[1].split(" ") - # * To remote the `,` from the url http://127.0.0.1:8545, + # * To remove the `,` from the url http://127.0.0.1:8545, if "," in rest[0]: rest[0] = rest[0].rstrip(",") sanitized_url = sanitize_url(rest[0])