From af35c9258e458e77e37ee0fd187356d9c1f26218 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Fri, 18 Oct 2019 16:58:29 +0200 Subject: [PATCH] Py3 Updates --- .travis.yml | 6 ------ esphome/platformio_api.py | 2 +- esphome/util.py | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index c14859ba8d..aa848877c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,12 +15,6 @@ matrix: - script/ci-custom.py - flake8 esphome - pylint esphome - - python: "3.5.3" - env: TARGET=Lint3.5 - script: - - script/ci-custom.py - - flake8 esphome - - pylint esphome - python: "3.5" env: TARGET=Test3.5 script: diff --git a/esphome/platformio_api.py b/esphome/platformio_api.py index de3aa4cce9..348c53af11 100644 --- a/esphome/platformio_api.py +++ b/esphome/platformio_api.py @@ -7,7 +7,7 @@ import re import subprocess from esphome.core import CORE -from esphome.py_compat import text_type, decode_text +from esphome.py_compat import decode_text from esphome.util import run_external_command, run_external_process _LOGGER = logging.getLogger(__name__) diff --git a/esphome/util.py b/esphome/util.py index 1f5f79c2f2..868e5d49e4 100644 --- a/esphome/util.py +++ b/esphome/util.py @@ -9,7 +9,7 @@ import subprocess import sys from esphome import const -from esphome.py_compat import IS_PY2, IS_PY3 +from esphome.py_compat import IS_PY2 _LOGGER = logging.getLogger(__name__)