Similar to #50
You can't do this:
@dataclass
class ExternalImageSearchResponse:
result: None | external.ImageSearchResponse
error: None | str
You must do this:
@dataclass
class ExternalImageSearchResponse:
result: Optional[external.ImageSearchResponse]
error: Optional[str]
or the parser throws an exception
Similar to #50
You can't do this:
You must do this:
or the parser throws an exception