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
I ran into an OpenAPI spec which included a Response type. That caused a name conflict in the generated python code:
from ...models.response import Response
from ...types import Response
This was fixed easily enough using a class_overrides config, but since the classes in types.py are pretty generic I think it would be better if the classes were just fully qualified to avoid this kind of conflict.
The text was updated successfully, but these errors were encountered:
I ran into an OpenAPI spec which included a
Response
type. That caused a name conflict in the generated python code:This was fixed easily enough using a
class_overrides
config, but since the classes intypes.py
are pretty generic I think it would be better if the classes were just fully qualified to avoid this kind of conflict.The text was updated successfully, but these errors were encountered: