You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The models in the temporary work directory for several classes are empty and causes the generator to stop.
The models in question are looking like:
class TraitNewRequest(BaseModel):
What I see in common for the models affected is that the server-side definition has a __root__ attribute (pydantic custom root type). They are defined as follows on the server-side:
class TraitNewRequest(BaseModel):
__root__: TraitBaseClass
The text was updated successfully, but these errors were encountered:
The models in the temporary work directory for several classes are empty and causes the generator to stop.
The models in question are looking like:
What I see in common for the models affected is that the server-side definition has a
__root__
attribute (pydantic custom root type). They are defined as follows on the server-side:The text was updated successfully, but these errors were encountered: