mirror of
https://github.com/esphome/esphome.git
synced 2024-11-05 09:16:46 +01:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
17 lines
281 B
Python
Executable File
17 lines
281 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import os.path
|
|
|
|
sys.path.append(os.path.dirname(__file__))
|
|
from helpers import build_all_include, build_compile_commands
|
|
|
|
|
|
def main():
|
|
build_all_include()
|
|
build_compile_commands()
|
|
print("Done.")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|