replace exit(main()) with raise SystemExit(main())

Committed via https://github.com/asottile/all-repos
This commit is contained in:
Anthony Sottile
2021-10-23 13:23:48 -04:00
parent 663a766a0c
commit c8cf74dc71
6 changed files with 6 additions and 6 deletions

View File

@@ -124,4 +124,4 @@ def main(argv: Optional[Sequence[str]] = None) -> int:
if __name__ == '__main__':
exit(main())
raise SystemExit(main())