InquirerPy
InquirerPy copied to clipboard
Fixed type hint for `execute_async`
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: