From 0eb2eeed390fd620d0a76a23404229b16f0bf604 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:21:53 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- napari_plugin_manager/qt_plugin_dialog.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/napari_plugin_manager/qt_plugin_dialog.py b/napari_plugin_manager/qt_plugin_dialog.py index e47bc85..293dbb9 100644 --- a/napari_plugin_manager/qt_plugin_dialog.py +++ b/napari_plugin_manager/qt_plugin_dialog.py @@ -1148,9 +1148,15 @@ def _setup_ui(self): lay.setContentsMargins(0, 2, 0, 2) self.installed_label = QLabel(trans._("Installed Plugins")) self.packages_search = QLineEdit() - self.packages_search.setPlaceholderText(trans._("Type here to start searching for plugins...")) - self.packages_search.setToolTip(trans._("The search text will filter currently installed plugins " - "while also being used to search for plugins on the napari hub")) + self.packages_search.setPlaceholderText( + trans._("Type here to start searching for plugins...") + ) + self.packages_search.setToolTip( + trans._( + "The search text will filter currently installed plugins " + "while also being used to search for plugins on the napari hub" + ) + ) self.packages_search.setMaximumWidth(350) self.packages_search.setClearButtonEnabled(True) self.packages_search.textChanged.connect(self.search)