mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
13 lines
225 B
Python
13 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())
|