From 6b5930e6cb7e89ff0985fd98ea659bf55b2d8eab Mon Sep 17 00:00:00 2001 From: Mat931 <49403702+Mat931@users.noreply.github.com> Date: Mon, 27 Apr 2026 18:18:33 +0200 Subject: [PATCH] Apply suggestions --- esphome/core/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/core/__init__.py b/esphome/core/__init__.py index c37b3be585..d97944fd2c 100644 --- a/esphome/core/__init__.py +++ b/esphome/core/__init__.py @@ -780,7 +780,8 @@ class EsphomeCore: return self.relative_pioenvs_path(self.name, "firmware.bin") @property - def partition_table_bin(self): + def partition_table_bin(self) -> Path: + # native ESP-IDF: self.relative_build_path("build", "partition_table", "partition-table.bin") return self.relative_pioenvs_path(self.name, "partitions.bin") @property