From f1605e494f95a830427add4cdfa08beb83387c6b Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 6 Nov 2025 14:57:58 +0100 Subject: [PATCH] add some type hints --- client/ayon_core/tools/publisher/widgets/comment_input.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/ayon_core/tools/publisher/widgets/comment_input.py b/client/ayon_core/tools/publisher/widgets/comment_input.py index 635a5c7e0c..0a2669fd5f 100644 --- a/client/ayon_core/tools/publisher/widgets/comment_input.py +++ b/client/ayon_core/tools/publisher/widgets/comment_input.py @@ -9,7 +9,6 @@ from ayon_core.tools.utils.lib import generate_user_avatar from ayon_core.tools.utils import ( BaseClickableFrame, PlaceholderLineEdit, - get_qt_icon, get_qt_app, PixmapLabel, ) @@ -147,7 +146,7 @@ class ValueItemsView(QtWidgets.QWidget): return self._last_selected_widget.get_value() return None - def go_up(self): + def go_up(self) -> None: prev_widget = None for idx in range(self._content_layout.count()): item = self._content_layout.itemAt(idx) @@ -166,7 +165,7 @@ class ValueItemsView(QtWidgets.QWidget): pos = prev_widget.pos() self._scroll_area.ensureVisible(pos.x(), pos.y()) - def go_down(self): + def go_down(self) -> None: next_widget = None current_found = False for idx in range(self._content_layout.count()):