forked from auracaster/bumble_mirror
Trial to commit in dhavan repo
This commit is contained in:
17
bumble/hid_menu.py
Normal file
17
bumble/hid_menu.py
Normal 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)
|
||||
Reference in New Issue
Block a user