esphome/script/build_compile_commands.py
Otto Winter 056c72d50d
Drop Python 2 Support (#793)
* Remove Python 2 support

* Remove u-strings

* Remove docker symlinks

* Remove from travis

* Update requirements

* Upgrade flake8/pylint

* Fixes

* Manual

* Run pyupgrade

* Lint

* Remove base_int

* Fix

* Update platformio_api.py

* Update component.cpp
2019-12-07 18:28:55 +01:00

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()