click-contrib / sphinx-click

A Sphinx plugin to automatically document click-based applications
MIT License
212 stars 57 forks source link

Use `asyncclick` when available #104

Closed droserasprout closed 2 years ago

droserasprout commented 2 years ago

Currently build fails with:

cli-reference.rst:1: ERROR: "<class 'asyncclick.core.Group'>" of type "dipdup.cli:cli" is not click.Command or click.Group."click.BaseCommand"

asyncclick is a drop-in replacement for click, as shown in official docs, so it should be perfectly safe to use it without any further modifications.

Related: #95