mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
12 lines
225 B
Python
12 lines
225 B
Python
import sys
|
|
|
|
|
|
def main():
|
|
print("The esphomeyaml command has been renamed to esphome.")
|
|
print("")
|
|
print("$ esphome {}".format(" ".join(sys.argv[1:])))
|
|
return 1
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|