1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-16 07:38:17 +00:00

Fix flake8 warnings

This commit is contained in:
Otto Winter 2018-04-10 16:34:37 +02:00
parent ec71e5f259
commit c77c36b7fe
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
2 changed files with 29 additions and 28 deletions

View File

@ -2,16 +2,17 @@ from __future__ import print_function
import codecs
import os
from time import sleep
import unicodedata
from time import sleep
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml.components import mqtt
from esphomeyaml.const import ESP_PLATFORMS, ESP_PLATFORM_ESP32, ESP_BOARDS_FOR_PLATFORM
from esphomeyaml.const import ESP_BOARDS_FOR_PLATFORM, ESP_PLATFORMS, ESP_PLATFORM_ESP32
from esphomeyaml.helpers import color
CORE_BIG = """ _____ ____ _____ ______
/ ____/ __ \| __ \| ____|
| | | | | | |__) | |__
@ -20,7 +21,7 @@ CORE_BIG = """ _____ ____ _____ ______
\_____\____/|_| \_\______|
"""
ESP_BIG = """ ______ _____ _____
| ____|/ ____| __ \
| ____|/ ____| __ \\
| |__ | (___ | |__) |
| __| \___ \| ___/
| |____ ____) | |
@ -41,10 +42,10 @@ MQTT_BIG = """ __ __ ____ _______ _______
|_| |_|\___\_\ |_| |_|
"""
OTA_BIG = """ ____ _______
/ __ \__ __|/\
| | | | | | / \
| | | | | | / /\ \
| |__| | | |/ ____ \
/ __ \__ __|/\\
| | | | | | / \\
| | | | | | / /\ \\
| |__| | | |/ ____ \\
\____/ |_/_/ \_\\
"""