You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running any of the pycommon python scripts and we are witing for user input, we need to handle the ctrl+c exceptions and exit the program gracefully.
try:
var = input(...)
except KeyboardInterrupt:
sys.exit(1)