From a90bccca20f73596f66dd50159b240fd74cd2d1c Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sun, 27 Mar 2022 22:19:14 +0200 Subject: [PATCH] [Qutebrowser] Fix broken configuration Configuration is now purely done through Python files --- .config/qutebrowser/config.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 220eb35..a32eabd 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -1,12 +1,8 @@ # pylint: disable=C0111 -from qutebrowser.config.configfiles import ConfigAPI # noqa: F401 -from qutebrowser.config.config import ConfigContainer # noqa: F401 -config: ConfigAPI = config # noqa: F821 pylint: disable=E0602,C0103 -c: ConfigContainer = c # noqa: F821 pylint: disable=E0602,C0103 # This is here so configs done via the GUI are still loaded. # Remove it to not load settings done via the GUI. -config.load_autoconfig(True) +config.load_autoconfig(False) # Aliases for commands. The keys of the given dictionary are the # aliases, while the values are the commands they map to.