From 838ad7ec9c271ae22886c95ab66d03752605ce04 Mon Sep 17 00:00:00 2001 From: "ZetGo | Aleksej K." <73279716+ZetGoHack@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:40:34 +0300 Subject: [PATCH] hikkalls fix --- heroku/loader.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/heroku/loader.py b/heroku/loader.py index c705643..4acb655 100644 --- a/heroku/loader.py +++ b/heroku/loader.py @@ -147,7 +147,9 @@ def patched_import(name: str, *args, **kwargs): return native_import("herokutl" + name[8:], *args, **kwargs) elif name.startswith("hikkatl"): return native_import("herokutl" + name[7:], *args, **kwargs) - elif name.startswith ("hikka"): + elif name.startwith("hikkalls"): + return native_import(name, *args, **kwargs) + elif name.startswith("hikka"): return native_import("heroku" + name[5:], *args, **kwargs) return native_import(name, *args, **kwargs)