change(esp_prov): also remove print_function from esp_prov

This commit is contained in:
Chen Yudong 2023-07-19 15:27:59 +08:00
parent 2ffc5ac6e6
commit ec39de3992
4 changed files with 1 additions and 8 deletions

View File

@ -1,6 +1,5 @@
# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Unlicense OR CC0-1.0
from __future__ import unicode_literals
import logging
import os

View File

@ -105,7 +105,6 @@ For Android, a provisioning tool along with source code is available [here](http
This requires the following python libraries to run:
* `bleak`
* `future`
* `protobuf`
* `cryptography`

View File

@ -1,9 +1,7 @@
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2018-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
#
from __future__ import print_function
from . import ble_cli
from .transport import Transport

View File

@ -1,9 +1,6 @@
# SPDX-FileCopyrightText: 2018-2023 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
#
from __future__ import print_function
import socket
from http.client import HTTPConnection, HTTPSConnection