Remove default value for partitions argument

The default will be set later based on the detected board.
This is in preparation of support for newer ESP32 variants.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
This commit is contained in:
Stijn Tintel 2022-03-05 15:53:42 +02:00
parent 8a205631c3
commit 70c74bba2f
1 changed files with 0 additions and 2 deletions

View File

@ -21,7 +21,6 @@ from esphomeflasher.common import (
from esphomeflasher.const import (
ESP32_DEFAULT_BOOTLOADER_FORMAT,
ESP32_DEFAULT_OTA_DATA,
ESP32_DEFAULT_PARTITIONS,
)
from esphomeflasher.helpers import list_serial_ports
@ -46,7 +45,6 @@ def parse_args(argv):
parser.add_argument(
"--partitions",
help="(ESP32-only) The partitions to flash.",
default=ESP32_DEFAULT_PARTITIONS,
)
parser.add_argument(
"--otadata",