Cleanup get_config imports

pull/6697/head
Jimmy Brisson 2018-04-09 09:23:15 -05:00 committed by adbridge
parent cac4cea6ae
commit 3617101154
1 changed files with 1 additions and 6 deletions

View File

@ -18,8 +18,7 @@ limitations under the License.
""" """
from __future__ import print_function from __future__ import print_function
import sys import sys
from os.path import isdir, abspath, dirname, join from os.path import abspath, dirname, join
from os import _exit
# Be sure that the tools directory is in the search path # Be sure that the tools directory is in the search path
ROOT = abspath(join(dirname(__file__), "..")) ROOT = abspath(join(dirname(__file__), ".."))
@ -31,10 +30,6 @@ from tools.options import extract_mcus
from tools.build_api import get_config from tools.build_api import get_config
from tools.config import Config from tools.config import Config
from tools.utils import argparse_filestring_type from tools.utils import argparse_filestring_type
try:
import tools.private_settings as ps
except:
ps = object()
if __name__ == '__main__': if __name__ == '__main__':
# Parse Options # Parse Options