From 737b77a99b90f6e82b15c2136df525a82d5f7909 Mon Sep 17 00:00:00 2001 From: MadCat9958 Date: Mon, 3 Jul 2023 19:58:25 +0300 Subject: [PATCH] hotfix --- boticordpy/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boticordpy/http.py b/boticordpy/http.py index 4a62222..e9e15a4 100644 --- a/boticordpy/http.py +++ b/boticordpy/http.py @@ -22,7 +22,7 @@ class HttpClient: def __init__(self, auth_token: str = None, version: int = 3, **kwargs): self.token = auth_token - self.API_URL = f"https://api.boticord.top/v{version}" + self.API_URL = f"https://api.boticord.top/v{version}/" loop = kwargs.get("loop") or asyncio.get_event_loop()