Skip to content

Commit

Permalink
Use entrypoint resolve to not check all the dependencies in the envir…
Browse files Browse the repository at this point in the history
…onment.

Fix click-contrib#31
  • Loading branch information
cpaulik committed Feb 20, 2020
1 parent 1f9f53e commit aebc63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion click_plugins/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def decorator(group):

for entry_point in plugins or ():
try:
group.add_command(entry_point.load())
group.add_command(entry_point.resolve())
except Exception:
# Catch this so a busted plugin doesn't take down the CLI.
# Handled by registering a dummy command that does nothing
Expand Down

0 comments on commit aebc63d

Please sign in to comment.