How to deal with Command.description()
with want_event
is True
?
#7
Labels
question
Further information is requested
Command.description()
with want_event
is True
?
#7
With
want_event=True
, we have something likewhich violates the current stubs
But if we use
@overload
like the following in our stubsthen it will force users to use the following signature in their implementation
which is annoying and breaks BC.
How do we fix this without using
# type: ignore
?The text was updated successfully, but these errors were encountered: