Skip to content

Commit

Permalink
Do not display napari_plugin_manager on the instaleld list (yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
goanpeca committed Aug 19, 2024
1 parent d3f33f3 commit f0a4825
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion napari_plugin_manager/qt_plugin_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,10 @@ def _add_installed(self, pkg_name=None):
distname,
) in napari.plugins.plugin_manager.iter_available():
# not showing these in the plugin dialog
if plugin_name in ('napari_plugin_engine',):
if plugin_name in (
'napari_plugin_engine',
'napari_plugin_manager',
):
continue
if normalized_name(distname or '') in self.already_installed:
continue
Expand Down

0 comments on commit f0a4825

Please sign in to comment.