How do you debug the code in the PyCharm IDE when it requires console input? For example, I have a piece of code,
# if the config already exists prompt what to do
if pc and not self.prompt.ask_yesno('project_ovverride'):
self.prompt.say('setup_abort')
return
This breaks in the line highlighted and I wasn't able to proceed for not being able to provide the console input. At the moment, I comment it out, but, there might be a way to provide the required console input as well.
Thank you.



