clan-lib: Fix @API.register_abstract not throwing correct error when called directly without implementation

clan-app: Fix mypy lint

clan-lib: Mark test as with_core
This commit is contained in:
Qubasa
2025-07-10 14:20:57 +07:00
committed by a-kenji
parent be384420d5
commit 0d851580e1
5 changed files with 13 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ class Webview:
)
else:
bridge = WebviewBridge(
webview=self, middleware_chain=tuple(self._middleware)
webview=self, middleware_chain=tuple(self._middleware), threads={}
)
self._bridge = bridge
return bridge