Hello,
I have the typical loop in my file:
def main():
bot_controller = defineBot(bot_config)
while True:
try:
bot_controller.executeBot()
except KeyboardInterrupt:
return
sleep(15)
However, when I hit ctrl+c the terminal appears to react but not actually stop the program:

Am I misunderstanding something?
Thanks