Skip to content

Commit 09a9f9e

Browse files
committed
Fixed linter issue on non python files
1 parent ad2db6d commit 09a9f9e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

examples/espressif/executor_runner/esp_pal.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ et_tick_ratio_t et_pal_ticks_to_ns_multiplier(void) {
6363
return {1000000000u, cpu_freq_hz};
6464
}
6565
#endif
66-
return {1000000000u, 240000000u}; // Default to 240 MHz if we can't get the actual frequency
66+
return {
67+
1000000000u,
68+
240000000u}; // Default to 240 MHz if we can't get the actual frequency
6769
}
6870

6971
void et_pal_emit_log_message(

tools/cmake/preset/esp_baremetal.cmake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ set_overridable_option(EXECUTORCH_BUILD_EXTENSION_DATA_LOADER OFF)
1010
set_overridable_option(EXECUTORCH_BUILD_KERNELS_QUANTIZED ON)
1111
set_overridable_option(EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL ON)
1212
set_overridable_option(EXECUTORCH_ENABLE_LOGGING ON)
13-
define_overridable_option(EXECUTORCH_ENABLE_EVENT_TRACER "Enable event tracer support" BOOL OFF)
13+
define_overridable_option(
14+
EXECUTORCH_ENABLE_EVENT_TRACER "Enable event tracer support" BOOL OFF
15+
)
1416

1517
if(EXECUTORCH_ENABLE_EVENT_TRACER)
1618
set(EXECUTORCH_BUILD_DEVTOOLS ON)

0 commit comments

Comments
 (0)