Skip to content

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)