forked from retoor/snek
fix: add missing self parameter to static_handler method in Application class
This commit is contained in:
+1
-1
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user