Coverage for example.py: 0%
7 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-12 17:08 +0200
« prev ^ index » next coverage.py v7.8.0, created at 2025-05-12 17:08 +0200
1import typing
3from sleazy import parse, stringify
6class MyCli(typing.TypedDict):
7 args: list[str]
10if __name__ == "__main__":
11 my_cli = parse(MyCli)
12 print(my_cli, stringify(my_cli, MyCli))