Pattern: Missing use of sys.exit() Issue: - Description Instead of using exit() or quit(), consider using the sys.exit(). Example of incorrect code: def test(): exit() Example of correct code: def test(): sys.exit()