"""The lambda handler.""" import sys sys.path.append('./disable_inactive_users') from disable_inactive_users import index # noqa from disable_inactive_users.connectors.logging import sentry_sdk # noqa def main(json_input=None, context=None): """The lambda handler.""" try: index.main(json_input, context) except Exception: sentry_sdk.capture_exception() if __name__ == '__main__': main()