defopt 6.4.0 ```python import defopt def main(*, arg: int) -> None: """Short tool description longer description Args: arg: description Output Format 1: - detail 1 - detail 2: - sub-detail 2.2 - detail 3 """ pass if __name__ == '__main__': defopt.run(main) ```