Marcelo Trylesinski
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
fastapi/utils.py
|
@ -37,6 +37,8 @@ def get_model_definitions( |
|
|
) |
|
|
) |
|
|
definitions.update(m_definitions) |
|
|
definitions.update(m_definitions) |
|
|
model_name = model_name_map[model] |
|
|
model_name = model_name_map[model] |
|
|
|
|
|
if "description" in m_schema: |
|
|
|
|
|
m_schema["description"] = m_schema["description"].split("\f")[0] |
|
|
definitions[model_name] = m_schema |
|
|
definitions[model_name] = m_schema |
|
|
return definitions |
|
|
return definitions |
|
|
|
|
|
|
|
|