This commit is contained in:
Stephen
2022-10-24 12:18:54 -04:00
committed by AUTOMATIC1111
parent db9ab1a46b
commit b46c64c6e5
2 changed files with 1 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ class PydanticModelGenerator:
field=underscore(k),
field_alias=k,
field_type=field_type_generator(k, v),
field_value=v.default,
field_value=v.default
)
for (k,v) in self._class_data.items() if k not in API_NOT_ALLOWED
]