From 3456460da6f61ec632886c67bf2ad3518b2f9b89 Mon Sep 17 00:00:00 2001 From: Stilian Iliev Date: Tue, 30 Dec 2025 11:54:28 +0200 Subject: [PATCH] fix lint error two spaces before comment --- qutebrowser/mainwindow/tabbedbrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/mainwindow/tabbedbrowser.py b/qutebrowser/mainwindow/tabbedbrowser.py index dabad788e..c2fc156b2 100644 --- a/qutebrowser/mainwindow/tabbedbrowser.py +++ b/qutebrowser/mainwindow/tabbedbrowser.py @@ -314,7 +314,7 @@ class TabbedBrowser(QWidget): strategy_key = config.val.tabs.select_on_remove or "default" strategy_cls = strategy_map.get(strategy_key, SelectionStrategy) - if type(self._selection_strategy) is not strategy_cls: # pylint: disable=unidiomatic-typecheck + if type(self._selection_strategy) is not strategy_cls: # pylint: disable=unidiomatic-typecheck self._selection_strategy = strategy_cls() def __repr__(self):