Cristian Sebastian Rocha
Results
2
issues of
Cristian Sebastian Rocha
Example: ``` from typing import List from pydantic import BaseModel from pydantic_yaml import parse_yaml_raw_as class Dimension(BaseModel): name: str group: str test_yaml = """ - apertura: male dimension: Sex - apertura:...
When try to parse List of objects fails with: TypeError: issubclass() arg 1 must be a class Check if model_type is a type before issubclass solve the issue.