You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it would be great if this could also support asyncclick. The changes involved would be fairly minimal, just replacing the click import with:
try:
import asyncclick as click
except:
import click
in _loader.py would suffice. This would assume that when asyncclick is installed, it should be used (since there is no other reason to install it alongside 'normal' click I can imagine. If that is considered not good enough, it would only be a few more lines to add an instance test against asyncclick.BaseCommand alongside the one against click.BaseCommand.
Thanks for considering!
The text was updated successfully, but these errors were encountered:
Hi there,
it would be great if this could also support asyncclick. The changes involved would be fairly minimal, just replacing the click import with:
in
_loader.py
would suffice. This would assume that when asyncclick is installed, it should be used (since there is no other reason to install it alongside 'normal' click I can imagine. If that is considered not good enough, it would only be a few more lines to add an instance test againstasyncclick.BaseCommand
alongside the one againstclick.BaseCommand
.Thanks for considering!
The text was updated successfully, but these errors were encountered: