From 330276cdf7363f4b9b0c2e0edb7dfa0b52cf73a7 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 28 Apr 2025 22:32:13 +0100 Subject: [PATCH] fix: lint for ruff --- application/api/user/routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/user/routes.py b/application/api/user/routes.py index f8e40b24..d96d6202 100644 --- a/application/api/user/routes.py +++ b/application/api/user/routes.py @@ -1442,7 +1442,7 @@ def require_agent(func): return wrapper -@user_ns.route(f"/api/webhooks/agents/") +@user_ns.route("/api/webhooks/agents/") class AgentWebhookListener(Resource): method_decorators = [require_agent]