Skip to content

Commit 2165443

Browse files
authored
Refactor arduino_libs_mcu assignment for clarity
1 parent c00e566 commit 2165443

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

builder/frameworks/component_manager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ def __init__(self, env):
5252
# Get Arduino libraries installation directory
5353
ald = self.platform.get_package_dir("framework-arduinoespressif32-libs")
5454
# Get MCU-specific Arduino libraries directory
55-
self.arduino_libs_mcu_path = (Path(ald) / self.mcu)
56-
self.arduino_libs_mcu = str(self.arduino_libs_mcu_path)
55+
self.arduino_libs_mcu = (str(Path(ald) / self.mcu))
5756

5857

5958
class ComponentLogger:

0 commit comments

Comments
 (0)