diff --git a/bumble/hid_menu.py b/bumble/hid_menu.py new file mode 100644 index 0000000..8b73257 --- /dev/null +++ b/bumble/hid_menu.py @@ -0,0 +1,17 @@ +"""TODO(skarnataki): DO NOT SUBMIT without one-line documentation for hid_menu. + +TODO(skarnataki): DO NOT SUBMIT without a detailed description of hid_menu. +""" + +from collections.abc import Sequence + +from absl import app + + +def main(argv: Sequence[str]) -> None: + if len(argv) > 1: + raise app.UsageError("Too many command-line arguments.") + + +if __name__ == "__main__": + app.run(main)