Skip to content

Commit

Permalink
Merge pull request kazhala#51 from ionite34/async-execute-typing
Browse files Browse the repository at this point in the history
Fixed type hint for `execute_async`
  • Loading branch information
kazhala authored Nov 19, 2022
2 parents 7513478 + 27662ab commit 714d906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InquirerPy/base/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def execute(self, raise_keyboard_interrupt: Optional[bool] = None) -> Any:
return result
return self._filter(result)

async def execute_async(self) -> None:
async def execute_async(self) -> Any:
"""Run the prompt asynchronously and get the result.
Returns:
Expand Down

0 comments on commit 714d906

Please sign in to comment.