From ae30b5763cbb729cd0f3daba6e4683c6a793e5c8 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 24 Oct 2021 07:15:30 -0700 Subject: [PATCH] exit(main()) -> raise SystemExit(main()) pt2 Committed via https://github.com/asottile/all-repos --- bin/download-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/download-theme b/bin/download-theme index 42abedf..4a8b631 100755 --- a/bin/download-theme +++ b/bin/download-theme @@ -87,4 +87,4 @@ def main() -> int: if __name__ == '__main__': - exit(main()) + raise SystemExit(main())