summaryrefslogtreecommitdiff
path: root/qutebrowser
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-06-24 12:01:14 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-06-30 19:29:28 +0200
commitb5d5c7f4d35e624abb30a1d585d30596637bea94 (patch)
tree05bc16f90598aa88a3a1a8b2b383db9e36f9142e /qutebrowser
parent58ee4cc21a4344ec0017b11e533f97956076df6a (diff)
downloadqutebrowser-b5d5c7f4d35e624abb30a1d585d30596637bea94.tar.gz
qutebrowser-b5d5c7f4d35e624abb30a1d585d30596637bea94.zip
More qt 6 tooling
Diffstat (limited to 'qutebrowser')
-rw-r--r--qutebrowser/qt/machinery.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qutebrowser/qt/machinery.py b/qutebrowser/qt/machinery.py
index 1269da4c1..3fdb4efb4 100644
--- a/qutebrowser/qt/machinery.py
+++ b/qutebrowser/qt/machinery.py
@@ -178,6 +178,7 @@ def _select_wrapper(args: Optional[argparse.Namespace]) -> SelectionInfo:
return SelectionInfo(wrapper=env_wrapper, reason=SelectionReason.env)
if _WRAPPER_OVERRIDE is not None:
+ pass # type: ignore[unreachable]
assert _WRAPPER_OVERRIDE in WRAPPERS, _WRAPPER_OVERRIDE
return SelectionInfo(wrapper=_WRAPPER_OVERRIDE, reason=SelectionReason.override)