mirror of
https://github.com/google/bumble.git
synced 2026-05-09 04:08:02 +00:00
18 lines
388 B
Python
18 lines
388 B
Python
"""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)
|