We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Because of the missing type hints, when using cls=DefaultGroupit is necessary to use # type: ignore to prevent errors like:
cls=DefaultGroup
# type: ignore
error: Untyped decorator makes function "my_function" untyped [misc]
So I copied the types from click 8.1.7 which makes mypy happy. I'll open the PR shortly.