Skip to content

Commit 498afc9

Browse files
committed
Cleanup get_config imports
1 parent 75cb4d7 commit 498afc9

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tools/get_config.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"""
1919
from __future__ import print_function
2020
import sys
21-
from os.path import isdir, abspath, dirname, join
22-
from os import _exit
21+
from os.path import abspath, dirname, join
2322

2423
# Be sure that the tools directory is in the search path
2524
ROOT = abspath(join(dirname(__file__), ".."))
@@ -31,10 +30,6 @@
3130
from tools.build_api import get_config
3231
from tools.config import Config
3332
from tools.utils import argparse_filestring_type
34-
try:
35-
import tools.private_settings as ps
36-
except:
37-
ps = object()
3833

3934
if __name__ == '__main__':
4035
# Parse Options

0 commit comments

Comments
 (0)