From 0ca14cd8ad0c79399a1401e5426a2865443d754f Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 03:18:50 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- api/controllers/common/wraps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/controllers/common/wraps.py b/api/controllers/common/wraps.py index ce9a3740d44..c4fb5842431 100644 --- a/api/controllers/common/wraps.py +++ b/api/controllers/common/wraps.py @@ -18,8 +18,7 @@ def openapi_rbac_permission_required[**P, R]( *, resource_required: bool = True, ) -> Callable[[Callable[P, R]], Callable[P, R]]: - """RBAC guard for OpenAPI endpoints that may be called by either an Account or an EndUser. - """ + """RBAC guard for OpenAPI endpoints that may be called by either an Account or an EndUser.""" inner = rbac_permission_required(resource_type, scene, resource_required=resource_required) def decorator(view: Callable[P, R]) -> Callable[P, R]: