fix: add missing self parameter to static_handler method in Application class

This commit is contained in:
2025-05-09 00:15:57 +00:00
parent 1d71a3604a
commit 3880121bdf
+1 -1
View File
@@ -254,7 +254,7 @@ class Application(BaseApplication):
return rendered
async def static_handler(request):
async def static_handler(self, request):
file_name = request.match_info.get('filename', '')
paths = []