From 65c948d1e864bd01cf8f9ceb4c8eefad304ec0b0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Jan 2021 14:41:30 +0100 Subject: [PATCH] Fix lint --- qutebrowser/config/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py index 90a02d00d..4d8630781 100644 --- a/qutebrowser/config/config.py +++ b/qutebrowser/config/config.py @@ -608,7 +608,7 @@ class ConfigContainer: # "c.content.host_blocking" doesn't actually exist. To avoid an AttributeError # which leads to a confusing error message, return another ConfigContainer so # that the chain can keep going. - return self._with_prefix(name) + return self._with_prefix(name) # type: ignore[unreachable] def __setattr__(self, attr: str, value: Any) -> None: """Set the given option in the config."""