Skip to content

Commit 72d30a0

Browse files
committed
Remove sys import
1 parent 977c247 commit 72d30a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
from setuptools.command.test import test as TestCommand
3+
34
import sortedcontainers
4-
import sys
55

66

77
class Tox(TestCommand):
@@ -12,7 +12,7 @@ def finalize_options(self):
1212
def run_tests(self):
1313
import tox
1414
errno = tox.cmdline(self.test_args)
15-
sys.exit(errno)
15+
exit(errno)
1616

1717

1818
with open('README.rst') as reader:

0 commit comments

Comments
 (0)