| 23 | |
| 24 | |
| 25 | class Beer(TypedDict): |
| 26 | itemType: Literal["Beer"] |
| 27 | kind: Annotated[str, Doc("examples: Mack and Jacks, Sierra Nevada Pale Ale, Miller Lite")] |
| 28 | quantity: NotRequired[Annotated[int, "default: 1"]] |
| 29 | |
| 30 | |
| 31 | SaladSize = Literal["half", "whole"] |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…