Skip to content

Commit

Permalink
Addresses @jairideout's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kestrelgorlick committed Jul 14, 2016
1 parent 3d870e1 commit deaa651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion q2cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def list_commands(self, ctx):
plugins = list(sorted(self._plugin_manager.plugins.keys()))
for idx, key in enumerate(plugins):
plugin = self._plugin_manager.plugins[key]
if not plugin.methods or not plugin.visualizers:
if not plugin.methods and not plugin.visualizers:
del plugins[idx]
builtins = list(sorted(self._builtin_commands.keys()))
commands = builtins + plugins
Expand Down

0 comments on commit deaa651

Please sign in to comment.