From 0c801ba892a011cc2a2d0278886a2d1f0d609cf1 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Wed, 9 Oct 2024 14:25:32 +0200 Subject: [PATCH] fix ui label --- client/ayon_core/lib/attribute_definitions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/lib/attribute_definitions.py b/client/ayon_core/lib/attribute_definitions.py index 99f9e9988f..01f5606f17 100644 --- a/client/ayon_core/lib/attribute_definitions.py +++ b/client/ayon_core/lib/attribute_definitions.py @@ -303,7 +303,7 @@ class UILabelDef(UIDef): def __init__(self, label, key=None): super().__init__(label=label, key=key) - def _custom_def_compare(self, other: "UILabelDef") -> bool: + def _def_type_compare(self, other: "UILabelDef") -> bool: return self.label == other.label