InquirerPy icon indicating copy to clipboard operation
InquirerPy copied to clipboard

Fixed type hint for `execute_async`

Open ionite34 opened this issue 3 years ago • 0 comments

Fixes #50

This fixes the incorrect type hint, changed from None to Any

- async def execute_async(self) -> None:
+ async def execute_async(self) -> Any:

ionite34 avatar Aug 20 '22 21:08 ionite34