mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-02-23 19:26:35 +00:00
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
13 lines
215 B
Python
13 lines
215 B
Python
import click
|
|
|
|
|
|
@click.command()
|
|
@click.argument("foo")
|
|
@click.option("--bar", is_flag=True, help="help for bar")
|
|
def main(foo, bar):
|
|
click.echo("{}, {}".format(foo, bar))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|