Bump flake8 from 3.7.9 to 3.8.3 (#1161)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Otto Winter <otto@otto-winter.com>
This commit is contained in:
dependabot[bot] 2020-07-16 10:03:11 +02:00 committed by GitHub
parent 67b4dcf8ae
commit 2e54d3f98d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -8,13 +8,16 @@ import os
import re
# pylint: disable=unused-import, wrong-import-order
from typing import Any, Dict, List, Optional, Set # noqa
from typing import Any, Dict, List, Optional, Set, TYPE_CHECKING # noqa
from esphome.const import CONF_ARDUINO_VERSION, SOURCE_FILE_EXTENSIONS, \
CONF_COMMENT, CONF_ESPHOME, CONF_USE_ADDRESS, CONF_WIFI
from esphome.helpers import ensure_unique_string, is_hassio
from esphome.util import OrderedDict
if TYPE_CHECKING:
from .cpp_generator import MockObj, MockObjClass, Statement
_LOGGER = logging.getLogger(__name__)

View File

@ -1,5 +1,5 @@
pylint==2.5.3
flake8==3.7.9
flake8==3.8.3
pillow
pexpect