Skip to content

Commit acc59a1

Browse files
committed
Format paths python module
1 parent 5fbcc25 commit acc59a1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tools/paths.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from os import getenv
1919

2020
# Conventions about the directory structure
21-
from settings import ROOT, BUILD_DIR
21+
from tools.settings import ROOT, BUILD_DIR
2222

2323
# Allow overriding some of the build parameters using environment variables
2424
BUILD_DIR = getenv("MBED_BUILD_DIR") or BUILD_DIR
@@ -104,8 +104,10 @@
104104
CPPUTEST_INC = join(CPPUTEST_DIR, "cpputest", "include")
105105
CPPUTEST_INC_EXT = join(CPPUTEST_DIR, "cpputest", "include", "CppUTest")
106106
# Platform dependant code is here (for armcc compiler)
107-
CPPUTEST_PLATFORM_SRC = join(CPPUTEST_DIR, "cpputest", "src", "Platforms", "armcc")
108-
CPPUTEST_PLATFORM_INC = join(CPPUTEST_DIR, "cpputest", "include", "Platforms", "armcc")
107+
CPPUTEST_PLATFORM_SRC = join(CPPUTEST_DIR, "cpputest", "src", "Platforms",
108+
"armcc")
109+
CPPUTEST_PLATFORM_INC = join(CPPUTEST_DIR, "cpputest", "include", "Platforms",
110+
"armcc")
109111
# Function 'main' used to run all compiled UTs
110112
CPPUTEST_TESTRUNNER_SCR = join(TEST_DIR, "utest", "testrunner")
111113
CPPUTEST_TESTRUNNER_INC = join(TEST_DIR, "utest", "testrunner")

0 commit comments

Comments
 (0)