From 74bdd09a165e1f4ed8073d7d7fa9d4479c54cdfe Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Wed, 28 May 2025 13:20:46 +0200 Subject: [PATCH] fix ruff issue --- client/ayon_core/tools/launcher/ui/actions_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/tools/launcher/ui/actions_widget.py b/client/ayon_core/tools/launcher/ui/actions_widget.py index 3760d8b470..70d49d36c0 100644 --- a/client/ayon_core/tools/launcher/ui/actions_widget.py +++ b/client/ayon_core/tools/launcher/ui/actions_widget.py @@ -842,7 +842,7 @@ class ActionsWidget(QtWidgets.QWidget): if not index or not index.isValid(): return - is_group = index.data(ACTION_IS_GROUP_ROLE) + _is_group = index.data(ACTION_IS_GROUP_ROLE) # TODO define and store what is default action for a group action_id = index.data(ACTION_ID_ROLE) self._trigger_action(action_id, index)