From 95dd51859e72440ba8a77018e085e942fb7a7ea0 Mon Sep 17 00:00:00 2001 From: DHARMA TEJA <147713875+teja-pola@users.noreply.github.com> Date: Tue, 10 Sep 2024 00:02:08 +0530 Subject: [PATCH] Update conf.py --- thefuck/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thefuck/conf.py b/thefuck/conf.py index 611ec84b..2b36cb26 100644 --- a/thefuck/conf.py +++ b/thefuck/conf.py @@ -14,7 +14,8 @@ try: module_spec.loader.exec_module(module) return module except ImportError: - from imp import load_source + # This block is no longer needed if importlib.util is always available. + pass class Settings(dict):