From e1decb79f4980d39c061509e67c24f2a67cf3d9a Mon Sep 17 00:00:00 2001 From: thenightmail Date: Wed, 9 Jul 2025 16:36:57 -0400 Subject: [PATCH] fix: two spaces needed for inline comments --- qutebrowser/mainwindow/treetabbedbrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/mainwindow/treetabbedbrowser.py b/qutebrowser/mainwindow/treetabbedbrowser.py index 468eb72a7..792e5bd25 100644 --- a/qutebrowser/mainwindow/treetabbedbrowser.py +++ b/qutebrowser/mainwindow/treetabbedbrowser.py @@ -286,7 +286,7 @@ class TreeTabbedBrowser(TabbedBrowser): # as a tree style tab correctly. We don't have a TreeTab so this is # heuristic to highlight any problems elsewhere in the application # logic. - assert tab.node.parent, ( # type: ignore[truthy-function] + assert tab.node.parent, ( # type: ignore[truthy-function] f"Node for new tab doesn't have a parent: {tab.node}" )