Skip to content

Commit c00e566

Browse files
authored
no str in function string
1 parent b83440e commit c00e566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/frameworks/_embed_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ def transform_to_asm(target, source, env):
139139
action=env.VerboseAction(
140140
" ".join(
141141
[
142-
f'"{str(Path(env.PioPlatform().get_package_dir("tool-cmake") or "") / "bin" / "cmake")}"',
142+
f'"{Path(env.PioPlatform().get_package_dir("tool-cmake") or "") / "bin" / "cmake"}"',
143143
"-DDATA_FILE=$SOURCE",
144144
"-DSOURCE_FILE=$TARGET",
145145
"-DFILE_TYPE=$FILE_TYPE",
146146
"-P",
147-
f'"{str(Path(env.PioPlatform().get_package_dir("framework-espidf") or "") / "tools" / "cmake" / "scripts" / "data_file_embed_asm.cmake")}"',
147+
f'"{Path(env.PioPlatform().get_package_dir("framework-espidf") or "") / "tools" / "cmake" / "scripts" / "data_file_embed_asm.cmake"}"',
148148
]
149149
),
150150
"Generating assembly for $TARGET",

0 commit comments

Comments
 (0)