Commit c489b055 authored by Adam Blank's avatar Adam Blank
Browse files

autocommit

No related merge requests found
Showing with 11 additions and 0 deletions
+11 -0
from typing import TypedDict, Literal
JokeType = Literal["general"] | Literal["knock-knock"] | Literal["programming"] | Literal["dad"] | Literal["any"]
class Joke(TypedDict):
type: JokeType
setup: str
punchline: str
id: int
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment