File: library_using_arguably.py

package info (click to toggle)
python-cyclopts 3.12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,288 kB
  • sloc: python: 11,445; makefile: 24
file content (10 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
import arguably


@arguably.command
def some_library_function(name):
    print(f"{name=}")


if __name__ == "__main__":
    arguably.run()