From 1e4271217db7e2e36728fe3666b3fef2a3f1a78f Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Thu, 9 Jan 2025 16:20:16 -0500 Subject: [PATCH] refactor(commands): get rid of custom module reloader --- commands/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/commands/__init__.py b/commands/__init__.py index 429d97f..86a67d8 100644 --- a/commands/__init__.py +++ b/commands/__init__.py @@ -11,7 +11,3 @@ __all__ = [ "match_token", "tokenize", ] - - -def __reload_module__(): - globals().update({k: v for k, v in vars(utils).items() if not k.startswith("_")})