Merge pull request #168 from asottile/all-repos_autofix_exit-main-2

exit(main()) -> raise SystemExit(main()) pt2
This commit is contained in:
Anthony Sottile
2021-10-24 08:11:16 -07:00
committed by GitHub

View File

@@ -87,4 +87,4 @@ def main() -> int:
if __name__ == '__main__':
exit(main())
raise SystemExit(main())