diff --git a/questionpy_server/decorators.py b/questionpy_server/decorators.py index b766fb8..277f72c 100644 --- a/questionpy_server/decorators.py +++ b/questionpy_server/decorators.py @@ -47,7 +47,7 @@ def decorator(function: RouteHandler) -> RouteHandler: # noqa: C901 raise TypeError(msg) @functools.wraps(function) - async def wrapper(request: Request, *args: Any, **kwargs: Any) -> Any: + async def wrapper(request: Request, *args: Any, **kwargs: Any) -> Any: # noqa: C901 """Wrapper around the actual function call.""" server: "QPyServer" = request.app["qpy_server_app"] package_hash: str = request.match_info.get("package_hash", "")