Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 68e3231

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sassc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ def main(*args, **kwargs):
1212

1313

1414
if __name__ == '__main__':
15-
exit(main())
15+
raise SystemExit(main())

0 commit comments

Comments
 (0)