Skip to content

Commit 8f07b9e

Browse files
committed
Remove unused imports
1 parent 81013e9 commit 8f07b9e

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tools/make.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@
2121
from __future__ import print_function
2222
from builtins import str
2323
import sys
24-
import json
25-
from time import sleep
26-
from shutil import copy
2724
from os.path import join, abspath, dirname
28-
from json import load, dump
2925

3026
# Be sure that the tools directory is in the search path
3127
ROOT = abspath(join(dirname(__file__), ".."))
@@ -41,7 +37,6 @@
4137
from tools.tests import TESTS, Test, TEST_MAP
4238
from tools.tests import TEST_MBED_LIB
4339
from tools.tests import test_known, test_name_known
44-
from tools.targets import TARGET_MAP
4540
from tools.options import get_default_options_parser
4641
from tools.options import extract_profile
4742
from tools.options import extract_mcus
@@ -54,7 +49,7 @@
5449
from utils import argparse_filestring_type
5550
from utils import argparse_many
5651
from utils import argparse_dir_not_parent
57-
from tools.toolchains import mbedToolchain, TOOLCHAIN_CLASSES, TOOLCHAIN_PATHS
52+
from tools.toolchains import TOOLCHAIN_CLASSES, TOOLCHAIN_PATHS
5853

5954

6055
def default_args_dict(options):

0 commit comments

Comments
 (0)