We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00e566 commit 2165443Copy full SHA for 2165443
builder/frameworks/component_manager.py
@@ -52,8 +52,7 @@ def __init__(self, env):
52
# Get Arduino libraries installation directory
53
ald = self.platform.get_package_dir("framework-arduinoespressif32-libs")
54
# 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)
+ self.arduino_libs_mcu = (str(Path(ald) / self.mcu))
57
58
59
class ComponentLogger:
0 commit comments