From 8f41eb93ef80bfbf3851ce8a82ea0f88c87e6c68 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Mon, 28 Jul 2025 20:58:59 -0400 Subject: Merge commit from fork * fix incorrect permissions on plugin directories * chown plugin dirs too * fix the stupid * cleanup useless comments --- backend/decky_loader/wsrouter.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'backend/decky_loader/wsrouter.py') diff --git a/backend/decky_loader/wsrouter.py b/backend/decky_loader/wsrouter.py index 8a019b44..691abd05 100644 --- a/backend/decky_loader/wsrouter.py +++ b/backend/decky_loader/wsrouter.py @@ -7,7 +7,7 @@ from aiohttp.web import Application, WebSocketResponse, Request, Response, get from enum import IntEnum -from typing import Callable, Coroutine, Dict, Any, cast, TypeVar +from typing import Callable, Coroutine, Dict, Any, cast from traceback import format_exc @@ -29,8 +29,6 @@ class WSMessageExtra(WSMessage): # see wsrouter.ts for typings -DataType = TypeVar("DataType") - Route = Callable[..., Coroutine[Any, Any, Any]] class WSRouter: -- cgit v1.2.3