mirror of
https://github.com/esphome/esphome.git
synced 2025-04-05 18:30:28 +01:00
fix python 3.9 build
This commit is contained in:
parent
1832349d8a
commit
cb7121383a
@ -1,10 +1,13 @@
|
||||
import asyncio
|
||||
import logging
|
||||
import re
|
||||
import sys
|
||||
from typing import Final
|
||||
from rich.pretty import pprint
|
||||
from bleak import BleakScanner, BleakClient
|
||||
from bleak.exc import BleakDeviceNotFoundError, BleakDBusError
|
||||
|
||||
if sys.version_info >= (3, 10):
|
||||
from smpclient.transport.ble import SMPBLETransport
|
||||
from smpclient.transport.serial import SMPSerialTransport
|
||||
from smpclient import SMPClient
|
||||
@ -85,6 +88,9 @@ def get_image_tlv_sha256(file):
|
||||
|
||||
|
||||
async def smpmgr_upload(config, host, firmware):
|
||||
if sys.version_info < (3, 10):
|
||||
_LOGGER.error("smpmgr requires at least python 3.10")
|
||||
return 1
|
||||
image_tlv_sha256 = get_image_tlv_sha256(firmware)
|
||||
if image_tlv_sha256 is None:
|
||||
return 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user