diff --git a/esphomeyaml/wizard.py b/esphomeyaml/wizard.py index 55afc3246e..7ba0b71423 100644 --- a/esphomeyaml/wizard.py +++ b/esphomeyaml/wizard.py @@ -3,7 +3,6 @@ from __future__ import print_function import codecs import os import unicodedata -from time import sleep import voluptuous as vol @@ -70,6 +69,12 @@ logger: """ +if os.getenv('ESPHOMEYAML_QUICKWIZARD', False): + def sleep(time): + pass +else: + from time import sleep + def print_step(step, big): print()