Skip to content

Commit 1302661

Browse files
authored
Merge pull request #368 from sass/all-repos_autofix_systemexit-main
replace exit(main()) with raise SystemExit(main())
2 parents b02d60d + 68e3231 commit 1302661

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)