Trial to commit in dhavan repo

This commit is contained in:
skarnataki
2023-09-15 07:08:22 +00:00
committed by Lucas Abel
parent b7cd451ddb
commit 644f74400d

17
bumble/hid_menu.py Normal file
View File

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