Skip to content

Commit bcee546

Browse files
committed
replace exit(main()) with raise SystemExit(main())
Committed via https://github.com/asottile/all-repos
1 parent 69009da commit bcee546

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pre_commit_mirror_maker/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ def main(argv: Optional[Sequence[str]] = None) -> int:
102102

103103

104104
if __name__ == '__main__':
105-
exit(main())
105+
raise SystemExit(main())

0 commit comments

Comments
 (0)