From 92c994ad0a195a14ff52cb13366f1f29004e2c77 Mon Sep 17 00:00:00 2001 From: gsd Date: Fri, 13 Feb 2026 23:35:00 +0300 Subject: [PATCH] python req2 --- webExtensions/publicEndpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webExtensions/publicEndpoints.py b/webExtensions/publicEndpoints.py index 1dd8a8b..52fb301 100644 --- a/webExtensions/publicEndpoints.py +++ b/webExtensions/publicEndpoints.py @@ -64,7 +64,7 @@ class WebExtension: @self.app.get(self.core.context+"/tile/{z}/{x}/{y}.png") @self.core.authManager.authRequest() - async def grabTile(z:int, x:int, y:int): + async def grabTile(request:Request, z:int, x:int, y:int): try: img = await self.core.tileManager.grabTile(z, x, y) print(type(img))